@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --paper: #f7f5f1;
  --paper-2: #fffefc;
  --ink: #131316;
  --ink-2: #26262b;
  --muted: #6f6b64;
  --soft: #edeae4;
  --line: #e2ddd4;
  --dark: #0e0e11;
  --white: #ffffff;
  --accent: #f06868;
  --accent-deep: #d84f4f;
  --green: #3aa46a;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --gutter: clamp(20px, 5vw, 80px);
  --wrap: 1340px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

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

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

button, input { font: inherit; color: inherit; }

button { cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #cfc9bf; border-radius: 99px; border: 2px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 10vw, 150px); }
.section--top { padding-top: clamp(56px, 8vw, 110px); }
.section--flush-bottom { padding-bottom: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow__num { color: var(--accent); font-weight: 700; }

.eyebrow__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.display {
  font-size: clamp(2.35rem, 6.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 500;
  text-wrap: balance;
}

.display em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
}

.display--accent em { color: var(--accent); }

.display--sm { font-size: clamp(2rem, 4.6vw, 3.8rem); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
}

.section-head__lead {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
  justify-self: end;
}

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}

.btn svg { width: 15px; height: 15px; transition: transform .45s var(--ease); }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(19, 19, 22, .45);
}

.btn:hover svg { transform: translate(2px, -2px); }

.btn--primary:hover { background: var(--accent); color: var(--white); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: rgba(19, 19, 22, .22);
}

.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); border-color: var(--ink); }

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--ink);
}

.btn--light:hover { background: var(--ink); color: var(--paper); }

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
}

.btn--dark:hover { background: var(--white); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 600;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(19, 19, 22, .25);
  transition: color .4s var(--ease), border-color .4s var(--ease), gap .4s var(--ease);
}

.link-arrow svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }

.link-arrow:hover { color: var(--accent); border-color: var(--accent); gap: .85rem; }

.link-arrow:hover svg { transform: translate(2px, -2px); }

.link-arrow--light { border-color: rgba(255, 255, 255, .28); }
.link-arrow--light:hover { color: var(--accent); border-color: var(--accent); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-in { opacity: 1; transform: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: transform .5s var(--ease), background .4s ease, border-color .4s ease, box-shadow .4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 241, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.site-header.is-hidden { transform: translateY(-101%); }

.site-header.is-menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header.is-menu-open .logo img { filter: brightness(0) invert(1); }
.site-header.is-menu-open .burger { border-color: rgba(255, 255, 255, .28); }
.site-header.is-menu-open .burger span { background: var(--paper); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; }
.logo img { height: 26px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.2vw, 2.4rem); }

.nav__item { position: relative; }

.nav__link {
  position: relative;
  display: inline-block;
  padding: .6rem 0;
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .3rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.nav__link--menu { display: inline-flex; align-items: center; gap: .35rem; }
.nav__link--menu svg { width: 10px; height: 10px; transition: transform .4s var(--ease); }
.nav__item:hover .nav__link--menu svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  min-width: 280px;
  padding: .6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 30px 60px -30px rgba(19, 19, 22, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}

.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu a {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: .7rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  transition: background .3s ease, color .3s ease;
}

.nav__menu a span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .3s ease;
}

.nav__menu a:hover { background: var(--soft); }
.nav__menu a:hover span { color: var(--accent); }

.header__actions { display: flex; align-items: center; gap: 1.4rem; }

.header__phone {
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .3s ease;
}

.header__phone:hover { color: var(--accent); }

.header__actions .btn { padding: .85rem 1.4rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform .4s var(--ease), opacity .3s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2.5rem;
  background: var(--dark);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
  overflow-y: auto;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: clamp(1.9rem, 8.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.1;
  transition: color .35s ease, padding-left .45s var(--ease);
}

.mobile-menu__link span { font-size: .72rem; letter-spacing: .16em; color: rgba(255, 255, 255, .4); }

.mobile-menu__link:hover { color: var(--accent); padding-left: .5rem; }

.mobile-menu__foot {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-menu__contact { display: flex; flex-direction: column; gap: .4rem; font-size: 1rem; }
.mobile-menu__contact a { color: rgba(255, 255, 255, .76); transition: color .3s ease; }
.mobile-menu__contact a:hover { color: var(--white); }

.mobile-menu__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero { padding-top: calc(var(--header-h) + clamp(30px, 5vw, 70px)); }

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__status { display: inline-flex; align-items: center; gap: .6rem; }

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(58, 164, 106, .5);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(58, 164, 106, .45); }
  70% { box-shadow: 0 0 0 9px rgba(58, 164, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 164, 106, 0); }
}

.hero__title {
  margin-top: clamp(1.6rem, 3.5vw, 2.8rem);
  max-width: 20ch;
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-top: clamp(1.8rem, 3.5vw, 2.8rem);
}

.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: #4c4944;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__visual {
  position: relative;
  margin-top: clamp(2.4rem, 5.5vw, 4.2rem);
}

.hero__figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 8.4;
  background: var(--soft);
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease);
}

.hero__figure.is-in img { transform: scale(1); }

.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 17, 0) 45%, rgba(14, 14, 17, .38) 100%);
  pointer-events: none;
}

.hero__quote {
  position: absolute;
  left: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  max-width: 400px;
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border-radius: var(--radius);
  background: rgba(255, 254, 252, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px -30px rgba(14, 14, 17, .5);
}

.hero__quote p {
  font-size: .98rem;
  line-height: 1.5;
  letter-spacing: -.01em;
}

.hero__quote footer {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.1rem;
}

.hero__quote img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.hero__quote strong { display: block; font-size: .86rem; font-weight: 600; }
.hero__quote span { display: block; font-size: .78rem; color: var(--muted); }

.hero__badge {
  position: absolute;
  top: clamp(1rem, 3vw, 2.4rem);
  right: clamp(1rem, 3vw, 2.4rem);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  background: rgba(19, 19, 22, .88);
  backdrop-filter: blur(8px);
  color: var(--paper);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero__badge b { color: var(--accent); font-weight: 700; }

.marquee {
  overflow: hidden;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding-block: 1.15rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__group span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.projects__list { margin-top: clamp(2.5rem, 5vw, 4rem); }

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5.5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.project:last-child { border-bottom: 1px solid var(--line); }

.project:nth-child(even) .project__media { order: 2; }

.project__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
  aspect-ratio: 16 / 11;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 17, 0);
  transition: background .5s ease;
}

.project:hover .project__media img { transform: scale(1.045); }
.project:hover .project__media::after { background: rgba(14, 14, 17, .08); }

.project__index {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
}

.project__meta {
  margin-top: .9rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.project__name {
  margin-top: .5rem;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}

.project__desc {
  margin-top: 1.2rem;
  max-width: 50ch;
  color: #4c4944;
  line-height: 1.65;
  font-size: .99rem;
}

.project__link { margin-top: 1.7rem; }

.projects__more { margin-top: clamp(2rem, 4vw, 3rem); }

.services__list { margin-top: clamp(2.5rem, 5vw, 4rem); }

.service {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1.15fr) 52px;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(.5rem, 1.2vw, 1.4rem);
  border-top: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease), border-color .5s ease;
}

.service:last-child { border-bottom: 1px solid var(--line); }

.service__index {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--muted);
  transition: color .5s ease;
}

.service__title {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.service__desc {
  font-size: .96rem;
  line-height: 1.6;
  color: #4c4944;
  transition: color .5s ease;
}

.service__arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .5s var(--ease), border-color .5s ease, transform .5s var(--ease), color .5s ease;
}

.service__arrow svg { width: 17px; height: 17px; }

.service:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
  transform: translateX(6px);
}

.service:hover .service__index { color: var(--accent); }
.service:hover .service__desc { color: rgba(247, 245, 241, .72); }
.service:hover .service__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.step { padding-top: 1.6rem; border-top: 1px solid var(--line); position: relative; }

.step__num {
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 19, 22, .35);
  transition: color .5s var(--ease), -webkit-text-stroke-color .5s ease;
}

.step:hover .step__num { color: var(--accent); -webkit-text-stroke-color: var(--accent); }

.step__title {
  margin-top: 1.3rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.step__text {
  margin-top: .8rem;
  color: #4c4944;
  line-height: 1.65;
  font-size: .97rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
}

.stat { padding: clamp(1.8rem, 3.5vw, 2.8rem); border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }

.stat__value {
  font-size: clamp(2.4rem, 4.4vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.stat__value small { font-size: .45em; font-weight: 600; color: var(--accent); }

.stat__label {
  margin-top: .8rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.why__item {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s ease;
}

.why__item:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 30px 60px -35px rgba(19, 19, 22, .35);
}

.why__num {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
}

.why__title {
  margin-top: 1.6rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

.why__text { margin-top: .7rem; color: #4c4944; line-height: 1.65; font-size: .97rem; }

.quote {
  background: var(--dark);
  color: var(--paper);
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 104, 104, .22), transparent 65%);
  pointer-events: none;
}

.quote__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.quote__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, .55);
}

.quote__label::after { content: ""; flex: 1; height: 1px; background: rgba(255, 255, 255, .14); }

.quote__text {
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
  font-size: clamp(1.55rem, 3.4vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -.03em;
  font-weight: 400;
  text-wrap: balance;
}

.quote__text em { color: var(--accent); font-style: italic; }

.quote__author {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.quote__author strong { display: block; font-weight: 600; font-size: .95rem; }
.quote__author span { display: block; font-size: .85rem; color: rgba(247, 245, 241, .6); }

.quote__aside {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}

.quote__aside p { font-size: .95rem; line-height: 1.6; color: rgba(247, 245, 241, .78); }
.quote__aside .link-arrow { margin-top: 1.3rem; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.post { display: flex; flex-direction: column; }

.post__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 11;
  background: var(--soft);
}

.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.post:hover .post__media img { transform: scale(1.05); }

.post__meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.3rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.post__tag { color: var(--accent); }

.post__title {
  margin-top: .7rem;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.3;
  transition: color .35s ease;
}

.post:hover .post__title { color: var(--accent); }

.post__more { margin-top: 1.2rem; }

.post__more .link-arrow { font-size: .85rem; }

.blog__more { margin-top: clamp(2rem, 4vw, 3rem); }

.cta {
  position: relative;
  overflow: hidden;
  margin-inline: var(--gutter);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.5rem, 5vw, 5.5rem);
  border-radius: clamp(24px, 3vw, 40px);
  background: var(--accent);
  color: var(--ink);
}

.cta::before {
  content: "webChange";
  position: absolute;
  right: -2%;
  bottom: -0.42em;
  font-size: clamp(6rem, 20vw, 17rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1;
  color: rgba(255, 255, 255, .12);
  pointer-events: none;
  white-space: nowrap;
}

.cta__inner { position: relative; }

.cta__label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cta__title { margin-top: clamp(1.2rem, 2.5vw, 2rem); max-width: 18ch; }

.cta__title em { font-style: italic; font-weight: 400; }

.cta__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 600;
}

.cta__contact a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid rgba(19, 19, 22, .3);
  padding-bottom: .2rem;
  transition: border-color .35s ease, gap .35s var(--ease);
}

.cta__contact a:hover { border-color: var(--ink); gap: .9rem; }
.cta__contact svg { width: 15px; height: 15px; }

.cta__note {
  margin-top: 1.4rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(19, 19, 22, .62);
}

.footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  background: var(--dark);
  color: rgba(247, 245, 241, .68);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__logo img { height: 26px; width: auto; }

.footer__text { margin-top: 1.3rem; max-width: 30ch; line-height: 1.65; font-size: .95rem; }

.footer__heading {
  margin-bottom: 1.2rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer__links li { margin-bottom: .55rem; }
.footer__links a { font-size: .95rem; transition: color .3s ease, padding-left .4s var(--ease); }
.footer__links a:hover { color: var(--white); padding-left: .3rem; }

.footer__newsletter p { font-size: .95rem; line-height: 1.6; }

.footer__form {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transition: border-color .35s ease;
}

.footer__form:focus-within { border-color: var(--accent); }

.footer__form input {
  flex: 1;
  min-width: 0;
  padding: .8rem 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: .95rem;
  outline: none;
}

.footer__form input::placeholder { color: rgba(247, 245, 241, .45); }

.footer__form button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  transition: background .4s var(--ease), border-color .4s ease, color .4s ease, transform .4s var(--ease);
}

.footer__form button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateX(3px);
}

.footer__form button svg { width: 15px; height: 15px; }

.footer__form-msg {
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity .4s ease;
}

.footer__form-msg.is-visible { opacity: 1; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-block: 1.8rem;
  font-size: .82rem;
}

.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { transition: color .3s ease; }
.footer__legal a:hover { color: var(--white); }

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .3s ease;
}

.footer__social:hover { color: var(--white); }
.footer__social svg { width: 15px; height: 15px; }

.mobile-cta {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 1rem;
  z-index: 120;
  display: none;
  gap: .6rem;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 252, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px -20px rgba(19, 19, 22, .35);
  transform: translateY(140%);
  transition: transform .6s var(--ease);
}

.mobile-cta.is-visible { transform: translateY(0); }

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-cta a svg { flex-shrink: 0; }

.mobile-cta a:first-child { background: var(--ink); color: var(--paper); }
.mobile-cta a:last-child { border: 1px solid var(--line); }
.mobile-cta svg { width: 15px; height: 15px; }

@media (max-width: 1080px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .header__actions .btn { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .section-head__lead { justify-self: start; }
  .quote__inner { grid-template-columns: 1fr; align-items: start; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .hero__lower { grid-template-columns: 1fr; align-items: start; }
  .hero__actions { justify-content: flex-start; }
  .project { grid-template-columns: 1fr; gap: 1.5rem; }
  .project:nth-child(even) .project__media { order: 0; }
  .service { grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 1rem; }
  .service__desc { display: none; }
  .service__arrow { width: 46px; height: 46px; }
  .process__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .why__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
  .blog__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .mobile-cta { display: flex; }
}

@media (max-width: 640px) {
  .hero__figure { aspect-ratio: 4 / 4.4; }
  .hero__quote {
    left: .8rem;
    right: .8rem;
    bottom: .8rem;
    max-width: none;
  }
  .hero__badge { top: .8rem; right: .8rem; font-size: .66rem; }
  .hero__meta { justify-content: flex-start; gap: .8rem 1.2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
  .cta { margin-inline: 12px; }
  .display { letter-spacing: -.03em; }
}

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