:root {
  --navy-950: #07111f;
  --navy-900: #0b1628;
  --navy-850: #111f34;
  --navy-800: #17273e;
  --ink: #111820;
  --muted: #6b747d;
  --line: #d9d9d5;
  --line-dark: rgba(255, 255, 255, 0.14);
  --paper: #f5f3ee;
  --paper-2: #eceae4;
  --white: #fff;
  --amber: #d3a21b;
  --amber-bright: #edb622;
  --amber-soft: #f2dfaa;
  --green: #297760;
  --shadow: 0 24px 70px rgba(4, 14, 28, 0.15);
  --container: min(1180px, calc(100vw - 64px));
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll,
body.menu-is-open {
  overflow: hidden;
}

body.admin-mode {
  background: #f0f2f4;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--amber);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.icon {
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.1, 1);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--amber-bright);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin-top: 22px;
  color: var(--navy-950);
  font: 700 clamp(36px, 4.1vw, 62px)/1.08 var(--font-display);
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 570px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  margin-inline: auto;
}

.button,
.admin-primary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  padding: 0 26px;
  cursor: pointer;
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button:hover,
.admin-primary:hover {
  transform: translateY(-2px);
}

.button--amber {
  background: var(--amber-bright);
  color: var(--navy-950);
}

.button--amber:hover {
  background: var(--white);
}

.button--dark,
.admin-primary {
  background: var(--navy-900);
  color: var(--white);
}

.button--dark:hover,
.admin-primary:hover {
  background: var(--amber);
  color: var(--navy-950);
}

.outline-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outline-link {
  min-height: 50px;
  border-bottom: 2px solid var(--amber);
  transition: gap 0.25s ease, color 0.25s ease;
}

.outline-link:hover,
.text-link:hover {
  gap: 25px;
  color: var(--amber);
}

.outline-link--light,
.text-link--light {
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  display: flex;
  width: 46px;
  height: 48px;
  align-items: end;
  gap: 3px;
  border-left: 2px solid var(--amber);
  padding: 8px 7px;
}

.brand__mark i {
  display: block;
  width: 7px;
  background: var(--amber);
  transform: skewY(-16deg);
}

.brand__mark i:nth-child(1) {
  height: 19px;
}

.brand__mark i:nth-child(2) {
  height: 28px;
}

.brand__mark i:nth-child(3) {
  height: 36px;
}

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

.brand__type strong {
  color: var(--navy-950);
  font: 800 24px/1 var(--font-display);
  letter-spacing: 0.2em;
}

.brand__type small {
  margin-top: 7px;
  color: #7a7f83;
  font: 600 8px/1 var(--font-display);
  letter-spacing: 0.22em;
}

.brand--compact .brand__mark {
  width: 39px;
  height: 41px;
}

.brand--compact .brand__type strong {
  font-size: 20px;
}

.topbar {
  position: relative;
  z-index: 50;
  height: 38px;
  background: #e9e9e6;
  color: #687079;
  font-size: 11px;
}

.topbar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.topbar__contacts,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__contacts a,
.topbar__contacts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a {
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--navy-950);
}

.site-header {
  position: relative;
  z-index: 100;
  height: 91px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--white);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 72px;
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(5, 18, 36, 0.09);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  margin-left: auto;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 15px;
  color: #3f464e;
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 15px;
  bottom: 22px;
  left: 15px;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: -24px;
  width: 320px;
  padding: 12px 0 0;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__label {
  display: block;
  padding: 15px 24px 20px;
  color: #6e7b8e;
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  color: var(--white);
  font: 600 13px/1.2 var(--font-display);
  transition: background 0.2s ease, padding 0.2s ease;
}

.nav-dropdown a b {
  color: var(--amber);
  font-size: 9px;
}

.nav-dropdown a:hover {
  padding-left: 29px;
  background: var(--navy-800);
}

.header-actions {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left: 18px;
}

.header-contact {
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  color: var(--navy-900);
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.header-contact svg {
  color: var(--amber);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--navy-950);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.75, 0, 0.2, 1);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu .brand__type strong,
.mobile-menu .brand__type small {
  color: var(--white);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 28px;
}

.mobile-menu__top button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
}

.mobile-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
}

.mobile-nav a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  padding: 17px 0;
  font: 600 25px/1.15 var(--font-display);
}

.mobile-nav a span {
  color: var(--amber);
  font-size: 10px;
}

.mobile-menu__foot {
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line-dark);
  padding: 24px 28px 32px;
  color: #9da8b8;
  font-size: 13px;
}

.hero {
  position: relative;
  height: calc(100vh - 129px);
  min-height: 650px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s cubic-bezier(0.18, 0.75, 0.25, 1);
}

.hero-slide.is-active .hero-slide__media {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 14, 27, 0.9) 0%, rgba(5, 14, 27, 0.62) 42%, rgba(5, 14, 27, 0.18) 72%, rgba(5, 14, 27, 0.38) 100%);
}

.hero-slide__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255, 255, 255, 0.09) 25%, transparent calc(25% + 1px)), linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.09) 50%, transparent calc(50% + 1px)), linear-gradient(90deg, transparent calc(75% - 1px), rgba(255, 255, 255, 0.09) 75%, transparent calc(75% + 1px));
  opacity: 0.5;
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 70%);
  padding-bottom: 25px;
}

.hero-copy__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--amber-bright);
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.2em;
}

.hero-copy__eyebrow i {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 850px;
  margin-top: 28px;
  font: 700 clamp(57px, 6.8vw, 104px)/0.98 var(--font-display);
  letter-spacing: -0.06em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.8s 0.15s ease, opacity 0.8s 0.15s ease;
}

.hero-copy > p {
  max-width: 570px;
  margin-top: 28px;
  color: #d9dfe6;
  font-size: 17px;
  line-height: 1.75;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.8s 0.32s ease, opacity 0.8s 0.32s ease;
}

.hero-copy__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.8s 0.45s ease, opacity 0.8s 0.45s ease;
}

.hero-slide.is-active .hero-copy h1,
.hero-slide.is-active .hero-copy > p,
.hero-slide.is-active .hero-copy__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__caption {
  position: absolute;
  z-index: 3;
  right: 47px;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.7);
  font: 600 11px/1 var(--font-display);
  letter-spacing: 0.15em;
}

.hero__controls {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.hero__controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 17, 31, 0.25);
  color: var(--white);
  cursor: pointer;
}

.hero__controls > button:first-child svg {
  transform: rotate(180deg);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__dots button {
  width: 35px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero__dots button span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.32);
  transition: background 0.25s ease, height 0.25s ease;
}

.hero__dots button.is-active span {
  height: 3px;
  background: var(--amber);
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 86px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
  font: 600 9px/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero__scroll i {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero__side-note {
  position: absolute;
  z-index: 4;
  top: 40%;
  right: 22px;
  color: rgba(255, 255, 255, 0.45);
  font: 600 9px/1 var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
}

.intro-bar {
  background: var(--amber);
}

.intro-bar__inner {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
}

.intro-bar p {
  color: var(--navy-950);
  font: 500 20px/1.4 var(--font-display);
}

.intro-bar a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-home {
  overflow: hidden;
}

.about-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 100px;
}

.about-home__visual {
  position: relative;
}

.about-home__image-wrap {
  position: relative;
  padding: 0 0 55px 55px;
}

.about-home__image-wrap::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 64%;
  height: 62%;
  background: var(--paper-2);
  content: "";
}

.about-home__image-wrap img {
  width: 100%;
  aspect-ratio: 0.91;
  object-fit: cover;
  filter: saturate(0.75);
}

.image-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 14px 22px;
  background: var(--amber);
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.14em;
}

.about-home__metric {
  position: absolute;
  right: -25px;
  bottom: 10px;
  display: flex;
  width: 240px;
  min-height: 120px;
  align-items: center;
  gap: 18px;
  background: var(--navy-900);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-home__metric strong {
  color: var(--amber);
  font: 700 57px/1 var(--font-display);
  letter-spacing: -0.06em;
}

.about-home__metric span {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
  color: #b9c1cb;
  font: 500 12px/1.55 var(--font-display);
}

.about-home__body {
  margin-top: 34px;
}

.about-home__body > p {
  color: #525b64;
  font-size: 16px;
  line-height: 1.8;
}

.values-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-inline div {
  min-height: 114px;
  padding: 23px 12px 20px 0;
}

.values-inline div + div {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.values-inline span {
  display: block;
  margin-bottom: 13px;
  color: var(--amber);
  font: 700 10px/1 var(--font-display);
}

.values-inline strong {
  font: 650 14px/1.45 var(--font-display);
}

.projects-showcase {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.projects-showcase .section-heading h2,
.projects-showcase .section-heading > p {
  color: var(--white);
}

.projects-showcase .section-heading > p {
  color: #9da9b8;
}

.projects-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 64px;
}

.featured-projects {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.project-card {
  grid-column: span 2;
}

.project-card--large {
  grid-column: span 4;
  grid-row: span 2;
}

.project-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy-800);
}

.project-card__media img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.project-card--large .project-card__media img {
  aspect-ratio: 1.45;
}

.project-card:hover .project-card__media img {
  filter: brightness(0.72);
  transform: scale(1.045);
}

.project-card__view {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--amber);
  color: var(--navy-950);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .project-card__view {
  transform: translateY(0);
}

.project-card__category {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  background: rgba(7, 17, 31, 0.84);
  color: var(--white);
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card__content {
  padding: 23px 2px 15px;
}

.project-card__content > span {
  color: var(--amber);
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin-top: 9px;
  font: 650 23px/1.25 var(--font-display);
  letter-spacing: -0.02em;
}

.project-card--large .project-card__content h3 {
  font-size: 30px;
}

.project-card__content p {
  margin-top: 7px;
  color: #91a0b2;
  font-size: 13px;
}

.project-card__progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.progress {
  height: 4px;
  overflow: hidden;
  background: rgba(119, 129, 139, 0.24);
}

.progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  animation: progress-in 1.2s 0.4s forwards ease;
}

@keyframes progress-in {
  to {
    transform: scaleX(1);
  }
}

.project-card__progress small {
  color: #a9b3bf;
  font: 700 10px/1 var(--font-display);
}

.services {
  background: var(--paper);
}

.services__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.services__intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.services__intro .outline-link {
  margin-top: 40px;
}

.service-list {
  border-top: 1px solid #c9c9c4;
}

.service-row {
  display: grid;
  grid-template-columns: 42px 64px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 145px;
  border-bottom: 1px solid #c9c9c4;
  transition: background 0.25s ease, padding 0.25s ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--white);
}

.service-row__no {
  color: var(--amber);
  font: 700 10px/1 var(--font-display);
}

.service-row__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #c8c8c3;
  color: var(--navy-900);
}

.service-row__copy h3 {
  font: 650 21px/1.25 var(--font-display);
}

.service-row__copy p {
  max-width: 440px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-row__arrow {
  color: #8d9399;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-row:hover .service-row__arrow {
  color: var(--amber);
  transform: translateX(5px);
}

.manifesto {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
}

.manifesto__media,
.manifesto__overlay {
  position: absolute;
  inset: 0;
}

.manifesto__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-attachment: fixed;
}

.manifesto__overlay {
  background: linear-gradient(90deg, rgba(4, 13, 26, 0.9), rgba(4, 13, 26, 0.32));
}

.manifesto__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.manifesto blockquote {
  max-width: 900px;
  margin-top: 30px;
  font: 600 clamp(40px, 5vw, 72px)/1.17 var(--font-display);
  letter-spacing: -0.05em;
}

.manifesto blockquote em {
  color: var(--amber-bright);
  font-style: normal;
}

.manifesto a {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 10px;
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.numbers {
  background: var(--white);
}

.numbers__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: end;
}

.numbers__title {
  padding-right: 45px;
}

.numbers__title .section-heading h2 {
  font-size: clamp(32px, 3.2vw, 48px);
}

.number-item {
  min-height: 165px;
  border-left: 1px solid var(--line);
  padding: 14px 25px;
}

.number-item strong {
  display: block;
  color: var(--navy-950);
  font: 650 clamp(38px, 4vw, 58px)/1 var(--font-display);
  letter-spacing: -0.06em;
}

.number-item span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.reviews-section {
  background: var(--paper);
}

.reviews-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.google-score {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px 16px;
  min-width: 300px;
  border-left: 3px solid var(--amber);
  padding: 10px 0 10px 20px;
}

.google-score__logo {
  grid-row: span 2;
}

.google-score span:nth-child(2) {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.google-score strong {
  font: 700 26px/1 var(--font-display);
}

.google-score small {
  color: var(--muted);
  font-size: 11px;
}

.stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: #d2d1cc;
  border: 1px solid #d2d1cc;
}

.review-card {
  min-height: 305px;
  background: var(--white);
  padding: 34px;
}

.review-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--navy-900);
  color: var(--white);
  font: 700 15px/1 var(--font-display);
}

.review-card__top div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card__top strong {
  font: 650 14px/1 var(--font-display);
}

.review-card__top small {
  color: var(--muted);
  font-size: 11px;
}

.google-mini {
  color: #4285f4;
  font: 700 20px/1 Arial;
}

.review-card > .stars {
  margin-top: 28px;
}

.review-card blockquote {
  min-height: 94px;
  margin-top: 19px;
  color: #4c545c;
  font-size: 14px;
  line-height: 1.7;
}

.review-card time {
  display: block;
  margin-top: 17px;
  color: #95999c;
  font-size: 11px;
}

.map-panel {
  position: relative;
  height: 450px;
  margin-top: 64px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.88);
}

.map-panel__card {
  position: absolute;
  top: 50%;
  left: 50px;
  width: 330px;
  padding: 36px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.map-panel__card h3 {
  margin-top: 18px;
  font: 650 28px/1.2 var(--font-display);
}

.map-panel__card p {
  margin-top: 14px;
  color: #b6c0ca;
  font-size: 14px;
  line-height: 1.6;
}

.map-panel__card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: var(--amber);
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.site-footer__signal {
  display: grid;
  grid-template-columns: 1fr var(--container) 1fr;
  min-height: 112px;
  align-items: center;
  background: var(--amber);
  color: var(--navy-950);
}

.site-footer__signal > div {
  grid-column: 1;
}

.site-footer__signal span {
  grid-column: 2;
  font: 650 25px/1.2 var(--font-display);
}

.site-footer__signal a {
  position: absolute;
  right: calc((100vw - min(1180px, calc(100vw - 64px))) / 2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--navy-950);
  padding-bottom: 8px;
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.8fr 1.1fr;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 70px;
}

.footer-about .brand__type strong,
.footer-about .brand__type small {
  color: var(--white);
}

.footer-about > p {
  max-width: 330px;
  margin-top: 27px;
  color: #8793a2;
  font-size: 14px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  color: #c2c9d1;
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3,
.footer-contact h3 {
  margin-bottom: 26px;
  color: var(--white);
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  margin: 7px 0;
  color: #8995a5;
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--amber);
  transform: translateX(4px);
}

.footer-contact p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin: 8px 0;
  color: #8995a5;
  font-size: 13px;
  line-height: 1.55;
}

.footer-contact svg {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: #697587;
  font-size: 11px;
}

.whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  height: 48px;
  align-items: center;
  background: #1fa968;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.whatsapp span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font: 800 11px/1 var(--font-display);
}

.whatsapp small {
  padding: 0 16px;
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.04em;
}

.back-to-top {
  position: fixed;
  z-index: 89;
  right: 24px;
  bottom: 84px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#toast-root {
  position: fixed;
  z-index: 3000;
  top: 22px;
  right: 22px;
  display: grid;
  width: min(390px, calc(100vw - 32px));
  gap: 10px;
}

.toast {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 11px;
  border-left: 4px solid var(--amber);
  background: var(--navy-900);
  color: var(--white);
  padding: 16px;
  box-shadow: var(--shadow);
  animation: toast-in 0.3s ease both;
}

.toast--success {
  border-color: #38a178;
}

.toast--error {
  border-color: #d85a56;
}

.toast > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

.toast p {
  color: #d5dae0;
  font-size: 13px;
  line-height: 1.45;
}

.toast button {
  border: 0;
  background: transparent;
  color: #8e98a6;
  cursor: pointer;
  font-size: 20px;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateX(20px);
  transition: 0.25s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* Inner pages */
.page-banner {
  position: relative;
  height: 365px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.page-banner > img,
.page-banner__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-banner > img {
  object-fit: cover;
  filter: grayscale(0.65);
}

.page-banner__veil {
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.91), rgba(7, 17, 31, 0.45)), linear-gradient(0deg, rgba(7, 17, 31, 0.45), transparent 60%);
}

.page-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
}

.page-banner h1 {
  margin-top: 22px;
  font: 700 clamp(46px, 5.4vw, 74px)/1 var(--font-display);
  letter-spacing: -0.05em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  color: #bbc3cc;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.breadcrumb svg {
  color: var(--amber);
}

.page-banner__index {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.44);
  font: 600 10px/1 var(--font-display);
  letter-spacing: 0.18em;
}

.inner-layout {
  background: var(--white);
}

.inner-layout__grid {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  align-items: start;
  gap: 75px;
}

.corporate-sidebar {
  position: sticky;
  top: 105px;
}

.quick-menu {
  border-top: 4px solid var(--amber);
  background: var(--paper);
}

.quick-menu__title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 25px 22px 20px;
}

.quick-menu__title span {
  font: 700 19px/1 var(--font-display);
}

.quick-menu__title small {
  color: #989b9d;
  font-size: 10px;
}

.quick-menu > a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #deddd8;
  padding: 0 19px;
  color: #687078;
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.quick-menu > a > span {
  color: #a4a7a8;
  font: 700 9px/1 var(--font-display);
}

.quick-menu > a b {
  font: 650 12px/1 var(--font-display);
}

.quick-menu > a svg {
  color: #a0a3a5;
}

.quick-menu > a:hover {
  padding-left: 23px;
}

.quick-menu > a.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.quick-menu > a.is-active > span,
.quick-menu > a.is-active svg {
  color: var(--amber);
}

.sidebar-block {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 27px;
}

.sidebar-block > p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.sidebar-block > p svg {
  color: var(--amber);
}

.downloads > a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
}

.downloads > a > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  background: var(--paper);
  color: var(--navy-900);
}

.downloads > a b {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font: 650 12px/1 var(--font-display);
}

.downloads > a small {
  color: #999d9f;
  font: 500 9px/1 var(--font-body);
}

.sidebar-cta {
  display: flex;
  min-height: 140px;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  margin-top: 35px;
  background: var(--amber);
  padding: 26px;
}

.sidebar-cta span {
  color: rgba(7, 17, 31, 0.65);
  font-size: 12px;
}

.sidebar-cta b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 15px/1.35 var(--font-display);
}

.corporate-content {
  min-width: 0;
}

.corporate-content__top .eyebrow {
  margin-bottom: 24px;
}

.corporate-content__top h2 {
  max-width: 830px;
  font: 700 clamp(39px, 4vw, 58px)/1.13 var(--font-display);
  letter-spacing: -0.045em;
}

.corporate-content__top .lead {
  max-width: 760px;
  margin-top: 26px;
  color: #4f5962;
  font-size: 19px;
  line-height: 1.7;
}

.corporate-visual,
.founder-visual {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}

.corporate-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 0.8s ease;
}

.corporate-visual:hover img {
  transform: scale(1.025);
}

.founder-visual {
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
  align-items: end;
  background: var(--paper);
}

.founder-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.founder-visual > span {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-left: 4px solid var(--amber);
  padding: 35px;
  color: var(--muted);
  font-size: 13px;
}

.founder-visual > span b {
  color: var(--navy-950);
  font: 700 24px/1.2 var(--font-display);
}

.corporate-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  margin-top: 48px;
}

.corporate-copy p {
  color: #5d656d;
  font-size: 16px;
  line-height: 1.85;
}

.corporate-quote {
  position: relative;
  margin-top: 54px;
  border-left: 4px solid var(--amber);
  background: var(--paper);
  padding: 40px 52px;
}

.corporate-quote > span {
  position: absolute;
  top: 8px;
  right: 28px;
  color: #dedcd5;
  font: 700 90px/1 var(--font-display);
}

.corporate-quote p {
  position: relative;
  max-width: 720px;
  color: var(--navy-900);
  font: 600 24px/1.55 var(--font-display);
}

.faq-list {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item > button > span {
  color: var(--amber);
  font: 700 10px/1 var(--font-display);
}

.faq-item > button b {
  font: 650 16px/1.3 var(--font-display);
}

.faq-item > button svg {
  transition: transform 0.25s ease;
}

.faq-item.is-open > button svg {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-item__answer p {
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer p {
  padding: 0 50px 28px 40px;
}

.career-list {
  margin-top: 54px;
  border-top: 4px solid var(--amber);
}

.career-list__head {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-900);
  color: var(--white);
  padding: 0 25px;
}

.career-list__head span {
  font: 650 18px/1 var(--font-display);
}

.career-list__head small {
  color: #8997a8;
}

.career-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 50px;
  align-items: center;
  gap: 25px;
  min-height: 115px;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  transition: background 0.2s ease, padding 0.2s ease;
}

.career-row:hover {
  background: var(--paper);
  padding-inline: 30px;
}

.career-row > div span {
  color: var(--amber);
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-row h3 {
  margin-top: 9px;
  font: 650 20px/1.2 var(--font-display);
}

.career-row > p {
  color: var(--muted);
  font-size: 13px;
}

.career-row > p small {
  display: block;
  margin-top: 7px;
  color: #999;
  font-size: 10px;
}

.career-row > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
}

.career-row:hover > a {
  background: var(--amber);
}

.career-general {
  display: flex;
  min-height: 85px;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  padding: 20px 24px;
}

.career-general a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy-900);
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Project overview and detail */
.projects-intro {
  padding-bottom: 85px;
}

.projects-intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.projects-intro__note {
  border-left: 3px solid var(--amber);
  padding: 8px 0 8px 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.project-category {
  padding: 100px 0;
  background: var(--paper);
}

.project-category:nth-child(odd) {
  background: var(--white);
}

.project-category--dark {
  background: var(--navy-900) !important;
  color: var(--white);
}

.project-category__head {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: end;
  gap: 35px;
  margin-bottom: 50px;
}

.project-category__head > span {
  color: var(--amber);
  font: 650 38px/1 var(--font-display);
  letter-spacing: -0.05em;
}

.project-category__head h2 {
  font: 650 clamp(34px, 3.5vw, 50px)/1.1 var(--font-display);
  letter-spacing: -0.04em;
}

.project-category__head p {
  max-width: 650px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.project-category--dark .project-category__head p {
  color: #96a2b1;
}

.project-category__head > a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 10px;
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-category__lead {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 540px;
}

.project-category__image {
  position: relative;
  overflow: hidden;
}

.project-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-category__image:hover img {
  transform: scale(1.035);
}

.project-category__image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  background: var(--amber);
  padding: 0 24px;
  color: var(--navy-950);
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-category__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  padding: 55px;
  color: var(--ink);
}

.project-category--dark .project-category__info {
  background: var(--navy-800);
  color: var(--white);
}

.project-category__info > span {
  color: var(--amber);
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-category__info h3 {
  margin-top: 14px;
  font: 650 35px/1.15 var(--font-display);
  letter-spacing: -0.035em;
}

.project-category__info > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.project-category--dark .project-category__info > p {
  color: #a5afbc;
}

.project-category__info dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-category--dark .project-category__info dl {
  border-color: var(--line-dark);
}

.project-category__info dl div {
  padding: 18px 10px 18px 0;
}

.project-category__info dl div + div {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.project-category--dark .project-category__info dl div + div {
  border-color: var(--line-dark);
}

.project-category__info dt {
  color: #9a9ea1;
  font-size: 9px;
  text-transform: uppercase;
}

.project-category__info dd {
  margin-top: 8px;
  font: 650 11px/1.3 var(--font-display);
}

.project-category__progress {
  margin-top: 28px;
}

.project-category__progress small {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.project-category__more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.project-mini-card {
  display: grid;
  min-height: 115px;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding-right: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.project-mini-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.project-mini-card img {
  width: 145px;
  height: 115px;
  object-fit: cover;
}

.project-mini-card > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-mini-card small {
  color: var(--amber);
  font-size: 9px;
  text-transform: uppercase;
}

.project-mini-card b {
  font: 650 17px/1.2 var(--font-display);
}

.project-list-page__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 65px;
}

.project-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.project-tabs a {
  position: relative;
  padding: 14px 18px;
  color: var(--muted);
  font: 650 11px/1 var(--font-display);
}

.project-tabs a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
}

.project-tabs a.is-active {
  color: var(--navy-950);
}

.project-tabs a.is-active::after {
  transform: scaleX(1);
}

.project-grid--all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 34px;
}

.project-grid--all .project-card {
  color: var(--ink);
}

.project-grid--all .project-card__content p {
  color: var(--muted);
}

.project-hero {
  position: relative;
  height: calc(100vh - 38px);
  min-height: 680px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.project-hero > img,
.project-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-hero > img {
  object-fit: cover;
  animation: hero-detail-in 1.4s ease both;
}

@keyframes hero-detail-in {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.project-hero__overlay {
  background: linear-gradient(90deg, rgba(5, 14, 27, 0.9) 0%, rgba(5, 14, 27, 0.52) 46%, rgba(5, 14, 27, 0.2) 75%), linear-gradient(0deg, rgba(5, 14, 27, 0.55), transparent 50%);
}

.project-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.project-hero__content > a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 45px;
  color: #c5ccd5;
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-hero__content > a svg {
  transform: rotate(180deg);
}

.project-hero__content > span {
  color: var(--amber);
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.project-hero__content h1 {
  max-width: 900px;
  margin-top: 19px;
  font: 700 clamp(62px, 8vw, 118px)/0.94 var(--font-display);
  letter-spacing: -0.065em;
}

.project-hero__content p {
  margin-top: 28px;
  color: #c5cbd3;
  font-size: 15px;
}

.project-hero__progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(430px, 42vw);
  background: var(--navy-900);
  padding: 27px 38px;
}

.project-hero__progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.project-hero__progress span {
  color: #909cac;
  font: 600 10px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-hero__progress strong {
  color: var(--amber);
  font: 650 23px/1 var(--font-display);
}

.project-facts {
  background: var(--paper);
}

.project-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.project-fact {
  display: grid;
  min-height: 135px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 17px;
  padding: 20px 28px;
}

.project-fact + .project-fact {
  border-left: 1px solid var(--line);
}

.project-fact > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: var(--white);
  color: var(--amber);
}

.project-fact > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-fact small {
  color: #929699;
  font-size: 9px;
  text-transform: uppercase;
}

.project-fact strong {
  font: 650 13px/1.3 var(--font-display);
}

.project-story__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.project-story__title {
  position: relative;
}

.project-story__title h2 {
  margin-top: 22px;
  font: 700 clamp(38px, 4vw, 58px)/1.1 var(--font-display);
  letter-spacing: -0.045em;
}

.vertical-word {
  position: absolute;
  top: 20px;
  left: -65px;
  color: #e8e6e1;
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
}

.project-story__copy .lead {
  color: var(--navy-900);
  font: 500 21px/1.65 var(--font-display);
}

.project-story__copy > p + p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.project-story__copy .outline-link {
  margin-top: 38px;
}

.project-gallery {
  padding: 40px 0 120px;
}

.project-gallery__head,
.pdf-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.project-gallery__head p {
  color: var(--muted);
  font-size: 11px;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.project-gallery__grid button {
  position: relative;
  height: 360px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #ddd;
  cursor: zoom-in;
}

.project-gallery__grid button.is-large {
  grid-column: span 2;
  height: 620px;
}

.project-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.project-gallery__grid button:hover img {
  filter: brightness(0.72);
  transform: scale(1.035);
}

.project-gallery__grid button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--amber);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-gallery__grid button:hover > span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.next-project {
  position: relative;
  height: 390px;
  overflow: hidden;
}

.next-project > img,
.next-project__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.next-project > img {
  object-fit: cover;
  transition: transform 0.7s ease;
}

.next-project:hover > img {
  transform: scale(1.04);
}

.next-project__overlay {
  background: rgba(5, 14, 27, 0.7);
}

.next-project > a {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--container);
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  color: var(--white);
}

.next-project span {
  color: var(--amber);
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.next-project h2 {
  margin-top: 18px;
  font: 650 clamp(42px, 5vw, 70px)/1 var(--font-display);
  letter-spacing: -0.05em;
}

.next-project > a svg {
  position: absolute;
  right: 0;
}

.lightbox {
  position: fixed;
  z-index: 2500;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(3, 10, 20, 0.94);
  padding: 45px;
  animation: fade-in 0.25s ease both;
}

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

.lightbox button {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

/* Catalog */
.catalog-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 100px;
}

.catalog-intro__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-intro__actions > span {
  max-width: 420px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.catalog-viewer {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  padding: 100px 0 80px;
}

.catalog-viewer__noise {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100px 100px;
}

.catalog-viewer__inner {
  position: relative;
  z-index: 1;
}

.book-stage {
  position: relative;
  width: min(940px, 82vw);
  aspect-ratio: 1.56;
  margin-inline: auto;
  perspective: 1800px;
}

.book-shadow {
  position: absolute;
  right: 6%;
  bottom: -9%;
  left: 6%;
  height: 15%;
  background: rgba(0, 0, 0, 0.68);
  filter: blur(30px);
}

.book-page {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 8px solid #ece7dc;
  background: #111;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: rotateY(82deg) translateX(15%);
  transform-origin: left center;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.2, 1), opacity 0.4s ease;
}

.book-page.is-active {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transform: rotateY(0deg) translateX(0);
}

.book-page.is-past {
  z-index: 12;
  opacity: 0;
  transform: rotateY(-100deg) translateX(-8%);
}

.book-page.is-future {
  z-index: calc(9 - var(--page-index));
}

.book-page img,
.book-page__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.book-page img {
  object-fit: cover;
}

.book-page__shade {
  background: linear-gradient(90deg, rgba(4, 13, 26, 0.78), rgba(4, 13, 26, 0.1)), linear-gradient(0deg, rgba(4, 13, 26, 0.55), transparent 55%);
}

.book-page__copy {
  position: absolute;
  z-index: 2;
  bottom: 9%;
  left: 7%;
  max-width: 70%;
}

.book-page__copy span {
  color: var(--amber);
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.18em;
}

.book-page__copy h2 {
  margin-top: 17px;
  font: 700 clamp(38px, 5vw, 70px)/1.03 var(--font-display);
  letter-spacing: -0.055em;
}

.book-page__copy p {
  margin-top: 17px;
  color: #d0d6dc;
  font-size: 13px;
}

.book-controls {
  display: grid;
  width: min(940px, 82vw);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 52px auto 0;
}

.book-controls button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #b4bdc8;
  cursor: pointer;
  font: 700 10px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-controls button:first-child svg {
  transform: rotate(180deg);
}

.book-controls button:last-child {
  justify-self: end;
}

.book-controls > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.book-controls strong {
  color: var(--amber);
  font: 650 25px/1 var(--font-display);
}

.book-controls span {
  color: #657284;
  font-size: 11px;
}

.book-hint {
  margin-top: 21px;
  color: #697688;
  font-size: 10px;
  text-align: center;
}

.pdf-section {
  background: var(--paper);
}

.pdf-section__head h2 {
  font: 650 30px/1.2 var(--font-display);
}

.pdf-section__head a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font: 700 10px/1 var(--font-display);
  text-transform: uppercase;
}

.pdf-section object {
  width: 100%;
  height: 750px;
  border: 1px solid var(--line);
  background: var(--white);
}

/* Contact */
.contact-page__head {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: end;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px 10px;
  border-bottom: 1px solid var(--line);
  padding: 22px 8px 22px 0;
}

.contact-details > div:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.contact-details svg {
  grid-row: span 2;
  color: var(--amber);
}

.contact-details span {
  color: #9b9da0;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  font: 600 13px/1.4 var(--font-display);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  margin-top: 65px;
}

.contact-form {
  background: var(--paper);
  padding: 45px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form > label,
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  color: #6c737a;
  font: 600 10px/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfc0bc;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 12px 2px;
  font-size: 14px;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--amber);
}

.contact-form .check-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 7px;
  text-transform: none;
}

.contact-form .check-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
}

.contact-form .button {
  margin-top: 8px;
}

.form-note {
  max-width: 480px;
  margin-top: 16px;
  color: #919597;
  font-size: 10px;
  line-height: 1.5;
}

.contact-map {
  position: relative;
  min-height: 620px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.9);
}

.contact-map > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-900);
  color: var(--white);
  padding: 0 25px;
}

.contact-map > div span {
  color: #91a0b2;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-map > div strong {
  font: 600 12px/1 var(--font-display);
}

.not-found {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  text-align: center;
}

.not-found > span {
  color: var(--amber);
  font: 700 80px/1 var(--font-display);
}

.not-found h1 {
  margin: 20px 0 35px;
  font: 650 34px/1.2 var(--font-display);
}

/* Admin */
.admin-app {
  --admin-sidebar: 248px;
  min-height: 100vh;
  background: #f1f3f5;
  color: #18212b;
  font-family: var(--font-body);
}

.admin-sidebar {
  position: fixed;
  z-index: 50;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--admin-sidebar);
  flex-direction: column;
  background: var(--navy-950);
  color: var(--white);
}

.admin-sidebar__brand {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 25px;
}

.admin-sidebar__brand .brand__type strong,
.admin-sidebar__brand .brand__type small {
  color: var(--white);
}

.admin-sidebar__brand > span {
  margin: 11px 0 0 52px;
  color: #69778a;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.admin-sidebar nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
  overflow: auto;
  padding: 22px 13px;
}

.admin-sidebar nav button {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 13px;
  border: 0;
  background: transparent;
  color: #8491a2;
  padding: 0 15px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-sidebar nav button::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -13px;
  width: 3px;
  background: var(--amber);
  content: "";
  transform: scaleY(0);
}

.admin-sidebar nav button span {
  font: 600 12px/1 var(--font-display);
}

.admin-sidebar nav button:hover,
.admin-sidebar nav button.is-active {
  background: var(--navy-800);
  color: var(--white);
}

.admin-sidebar nav button.is-active::before {
  transform: scaleY(1);
}

.admin-sidebar nav button.is-active svg {
  color: var(--amber);
}

.admin-sidebar__bottom {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line-dark);
  padding: 18px 13px 22px;
}

.admin-sidebar__bottom a,
.admin-sidebar__bottom button {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #7e8a9a;
  padding: 0 14px;
  cursor: pointer;
  font: 600 11px/1 var(--font-display);
}

.admin-sidebar__bottom a:hover,
.admin-sidebar__bottom button:hover {
  color: var(--white);
}

.admin-main {
  min-height: 100vh;
  margin-left: var(--admin-sidebar);
}

.admin-topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe2e5;
  background: rgba(255, 255, 255, 0.96);
  padding: 0 34px;
  backdrop-filter: blur(12px);
}

.admin-topbar > div:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-topbar > div:first-of-type span {
  color: #9ca2a8;
  font: 700 8px/1 var(--font-display);
  letter-spacing: 0.16em;
}

.admin-topbar > div:first-of-type strong {
  font: 650 16px/1 var(--font-display);
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-user > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--navy-900);
  color: var(--white);
  font: 700 10px/1 var(--font-display);
}

.admin-user p {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-user b {
  font: 650 11px/1 var(--font-display);
}

.admin-user small {
  color: #969da4;
  font-size: 9px;
}

.admin-mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.admin-content {
  width: min(1400px, 100%);
  margin-inline: auto;
  padding: 38px 34px 70px;
}

.admin-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.admin-page-head > div > span,
.admin-inline-editor__head span {
  color: var(--amber);
  font: 700 8px/1 var(--font-display);
  letter-spacing: 0.17em;
}

.admin-page-head h1 {
  margin-top: 8px;
  font: 700 29px/1.1 var(--font-display);
  letter-spacing: -0.035em;
}

.admin-page-head p {
  max-width: 620px;
  margin-top: 9px;
  color: #7e858c;
  font-size: 12px;
  line-height: 1.5;
}

.admin-primary {
  min-height: 42px;
  gap: 10px;
  padding: 0 18px;
  font-size: 9px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.admin-metric {
  display: grid;
  min-height: 126px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid #e0e3e6;
  background: var(--white);
  padding: 20px;
}

.admin-metric > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  background: #f2eee4;
  color: #b28718;
}

.admin-metric > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 10px;
}

.admin-metric small {
  grid-column: span 2;
  color: #838a91;
  font-size: 10px;
}

.admin-metric strong {
  font: 700 28px/1 var(--font-display);
  letter-spacing: -0.04em;
}

.admin-metric p {
  color: #6d7d78;
  font-size: 8px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  gap: 18px;
  margin-top: 18px;
}

.admin-dashboard-grid > * {
  min-width: 0;
}

.admin-dashboard-side {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 18px;
}

.admin-panel,
.admin-form {
  min-width: 0;
  border: 1px solid #dfe2e5;
  background: var(--white);
}

.admin-panel__head {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e4e6e8;
  padding: 15px 22px;
}

.admin-panel__head h2 {
  font: 650 14px/1 var(--font-display);
}

.admin-panel__head p {
  margin-top: 6px;
  color: #979da3;
  font-size: 9px;
}

.admin-panel__head > button,
.admin-panel__head > div + button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #65707a;
  cursor: pointer;
  font: 650 9px/1 var(--font-display);
}

.admin-project-list article {
  display: grid;
  grid-template-columns: 48px 1fr 100px 100px 35px;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  border-bottom: 1px solid #eceeef;
  padding: 11px 22px;
}

.admin-project-list article:last-child {
  border-bottom: 0;
}

.admin-project-list img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.admin-project-list article > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-project-list strong {
  font: 650 11px/1 var(--font-display);
}

.admin-project-list article > div span,
.admin-project-list article > b {
  color: #858c93;
  font-size: 9px;
  font-weight: 500;
}

.admin-project-list article > p {
  height: 4px;
  overflow: hidden;
  background: #e9ebed;
}

.admin-project-list article > p span {
  display: block;
  height: 100%;
  background: var(--amber);
}

.admin-project-list article > small {
  color: #707880;
  font-size: 9px;
}

.admin-quick > button {
  display: grid;
  width: 100%;
  min-height: 65px;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid #eceeef;
  background: transparent;
  padding: 10px 19px;
  cursor: pointer;
  text-align: left;
}

.admin-quick > button > svg:first-child {
  color: var(--amber);
}

.admin-quick > button span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-quick > button b {
  font: 650 10px/1 var(--font-display);
}

.admin-quick > button small {
  color: #999fa5;
  font-size: 8px;
}

.admin-storage {
  border-top: 3px solid var(--amber);
  padding: 24px;
}

.admin-storage > span {
  color: var(--amber);
  font: 700 8px/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-storage strong {
  display: block;
  margin-top: 10px;
  font: 650 14px/1.3 var(--font-display);
}

.admin-storage p {
  margin-top: 10px;
  color: #818990;
  font-size: 10px;
  line-height: 1.55;
}

.admin-storage button {
  margin-top: 18px;
  border: 0;
  border-bottom: 1px solid #8b9299;
  background: transparent;
  padding: 0 0 5px;
  color: #6d747b;
  cursor: pointer;
  font: 650 9px/1 var(--font-display);
}

.admin-form--wide {
  max-width: 1150px;
}

.admin-form-section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
  border-bottom: 1px solid #e7e9eb;
  padding: 32px;
}

.admin-form-section__intro h2 {
  font: 650 14px/1.3 var(--font-display);
}

.admin-form-section__intro p {
  margin-top: 9px;
  color: #92989e;
  font-size: 10px;
  line-height: 1.5;
}

.admin-form-section__fields {
  min-width: 0;
}

.admin-form-grid {
  display: grid;
  gap: 16px;
}

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

.admin-form-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.admin-field > span {
  color: #666e76;
  font: 650 9px/1 var(--font-display);
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d9dde0;
  border-radius: 0;
  outline: none;
  background: #fbfbfa;
  padding: 10px 12px;
  color: #202932;
  font-size: 11px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-field textarea {
  min-height: auto;
  resize: vertical;
  line-height: 1.55;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  border-color: var(--amber);
  background: var(--white);
}

.admin-field > small {
  color: #a0a5aa;
  font-size: 8px;
}

.admin-check {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  align-self: center;
  border: 1px solid #d9dde0;
  padding: 0 12px;
  color: #666e76;
  font: 650 9px/1 var(--font-display);
}

.admin-check input {
  accent-color: var(--amber);
}

.admin-file-field {
  position: relative;
}

.admin-file-field > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-file-field > div {
  display: grid;
  min-height: 67px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 4px 10px;
  border: 1px dashed #c5cbd0;
  background: #fbfbfa;
  padding: 11px 14px;
  cursor: pointer;
}

.admin-file-field > div svg {
  grid-row: span 2;
  color: var(--amber);
}

.admin-file-field > div b {
  overflow: hidden;
  max-width: 290px;
  font: 650 9px/1.2 var(--font-display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-file-field > div small {
  color: #9aa0a5;
  font-size: 8px;
}

.admin-save-bar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 32px;
}

.admin-save-bar p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8c9399;
  font-size: 9px;
}

.admin-save-bar p svg {
  color: var(--green);
}

.admin-save-bar--compact {
  margin: 16px -25px -25px;
  border-top: 1px solid #e5e7e9;
  padding: 15px 25px 0;
}

.admin-inline-editor {
  margin-bottom: 24px;
  border-top: 4px solid var(--amber);
  padding: 25px;
}

.admin-inline-editor__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.admin-inline-editor__head h2 {
  margin-top: 7px;
  font: 650 20px/1.2 var(--font-display);
}

.admin-inline-editor__head > button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dfe2e4;
  background: transparent;
  cursor: pointer;
}

.admin-card-list {
  padding: 8px 20px 20px;
}

.admin-content-card {
  display: grid;
  grid-template-columns: 36px 115px 1fr 60px 170px;
  align-items: center;
  gap: 16px;
  min-height: 105px;
  border-bottom: 1px solid #e8eaec;
  padding: 12px 2px;
}

.admin-content-card__order {
  color: #a1a6ab;
  font: 700 9px/1 var(--font-display);
}

.admin-content-card > img {
  width: 115px;
  height: 76px;
  object-fit: cover;
}

.admin-content-card > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-content-card > div:nth-of-type(2) span {
  color: var(--amber);
  font: 700 8px/1 var(--font-display);
  letter-spacing: 0.08em;
}

.admin-content-card > div:nth-of-type(2) strong {
  font: 650 12px/1.3 var(--font-display);
}

.admin-content-card > div:nth-of-type(2) small {
  color: #90969c;
  font-size: 9px;
}

.admin-order-actions {
  display: flex;
  gap: 4px;
}

.admin-order-actions button {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #e0e3e5;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.admin-row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.admin-row-actions a,
.admin-row-actions button {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #dfe2e4;
  background: transparent;
  padding: 0 10px;
  cursor: pointer;
  color: #68717a;
  font: 600 9px/1 var(--font-display);
}

.admin-row-actions .is-danger {
  color: #ba5b57;
}

.admin-project-table__head,
.admin-project-table > article {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 0.65fr 0.8fr 0.8fr 120px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
}

.admin-project-table__head {
  min-height: 40px;
  background: #f7f7f5;
  color: #8b9298;
  font: 700 8px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-project-table > article {
  min-height: 84px;
  border-bottom: 1px solid #e8eaec;
  font-size: 10px;
}

.admin-project-name {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 13px;
}

.admin-project-name img {
  width: 68px;
  height: 48px;
  object-fit: cover;
}

.admin-project-name span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.admin-project-name strong {
  overflow: hidden;
  font: 650 11px/1 var(--font-display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-project-name small {
  color: #92999f;
  font-size: 8px;
}

.status-badge {
  display: inline-block;
  border: 1px solid #d9dde0;
  padding: 6px 8px;
  color: #717a82;
  font: 650 8px/1 var(--font-display);
}

.status-badge--ongoing {
  border-color: #e6d6a9;
  background: #fcf7e8;
  color: #9c7617;
}

.status-badge--completed {
  border-color: #c7dfd6;
  background: #edf7f3;
  color: #377960;
}

.status-badge--international {
  border-color: #d2d9e5;
  background: #f0f3f8;
  color: #536e96;
}

.admin-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-progress p {
  width: 75px;
  height: 4px;
  background: #e5e8ea;
}

.admin-progress p span {
  display: block;
  height: 100%;
  background: var(--amber);
}

.admin-progress b {
  color: #707880;
  font-size: 8px;
}

.admin-filter-pills button {
  border: 1px solid #dce0e3;
  background: transparent;
  padding: 7px 11px;
  color: #737b83;
  font-size: 8px;
}

.admin-filter-pills button.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.admin-service-grid,
.admin-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-service-card {
  position: relative;
  min-height: 275px;
  padding: 24px;
}

.admin-service-card > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #abb0b4;
  font: 700 9px/1 var(--font-display);
}

.admin-service-card > div {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: #f3efe5;
  color: #aa8118;
}

.admin-service-card h2 {
  margin-top: 23px;
  font: 650 17px/1.2 var(--font-display);
}

.admin-service-card > p {
  margin-top: 12px;
  color: #838a90;
  font-size: 10px;
  line-height: 1.65;
}

.admin-service-card footer {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e7e9eb;
  padding-top: 14px;
}

.admin-service-card footer button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #6f7880;
  cursor: pointer;
  font-size: 9px;
}

.admin-service-card footer button.is-danger {
  color: #ba5b57;
}

.admin-subtabs {
  display: flex;
  overflow-x: auto;
  margin-bottom: 16px;
  border: 1px solid #dfe2e5;
  background: var(--white);
}

.admin-subtabs button {
  min-height: 45px;
  border: 0;
  border-right: 1px solid #e5e7e9;
  background: transparent;
  padding: 0 18px;
  color: #7f878e;
  cursor: pointer;
  font: 650 9px/1 var(--font-display);
  white-space: nowrap;
}

.admin-subtabs button.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.admin-review-card {
  min-height: 245px;
  padding: 22px;
}

.admin-review-card > div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
}

.admin-review-card > div > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--navy-900);
  color: var(--white);
  font: 700 10px/1 var(--font-display);
}

.admin-review-card > div > p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-review-card > div strong {
  font: 650 10px/1 var(--font-display);
}

.admin-review-card > div small {
  color: #93999f;
  font-size: 8px;
}

.admin-review-card > div > b {
  color: var(--amber);
  font-size: 9px;
}

.admin-review-card blockquote {
  margin-top: 24px;
  color: #6f777e;
  font-size: 10px;
  line-height: 1.7;
}

.admin-review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  border-top: 1px solid #e8eaec;
  padding-top: 14px;
}

.admin-review-card footer > small {
  color: #9da2a7;
  font-size: 8px;
}

.admin-review-card footer p {
  display: flex;
  gap: 5px;
}

.admin-review-card footer button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #e0e3e5;
  background: transparent;
  cursor: pointer;
}

.admin-review-card footer button.is-danger {
  color: #ba5b57;
}

.admin-job-list article,
.admin-download-list article {
  display: grid;
  grid-template-columns: 45px 1.2fr 1fr 0.6fr 100px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border-bottom: 1px solid #e8eaec;
  padding: 12px 22px;
}

.admin-job-list article > span,
.admin-download-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #f3efe5;
  color: #aa8118;
}

.admin-job-list article > div:nth-child(2),
.admin-download-list article > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-job-list small,
.admin-download-list small {
  color: #93999f;
  font-size: 8px;
}

.admin-job-list strong,
.admin-download-list strong {
  font: 650 11px/1 var(--font-display);
}

.admin-job-list article > p,
.admin-job-list article > b,
.admin-download-list article > b {
  color: #767e85;
  font-size: 9px;
  font-weight: 500;
}

.admin-download-list article {
  grid-template-columns: 45px 1fr 80px 100px;
}

.admin-downloads-panel {
  max-width: 1150px;
  margin-top: 18px;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.55fr 1.2fr 1fr auto auto;
  align-items: end;
  gap: 10px;
  border-bottom: 1px solid #e4e7e9;
  background: #fafaf8;
  padding: 18px 22px 6px;
}

.admin-inline-form > button:last-child {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #7d858c;
  cursor: pointer;
  font-size: 9px;
}

/* Admin login */
.admin-login {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
}

.admin-login__visual {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.admin-login__visual > img,
.admin-login__visual > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.admin-login__visual > img {
  object-fit: cover;
}

.admin-login__visual > div {
  background: linear-gradient(0deg, rgba(4, 12, 24, 0.88), rgba(4, 12, 24, 0.2));
}

.admin-login__visual blockquote {
  position: absolute;
  z-index: 2;
  bottom: 80px;
  left: 9%;
  font: 650 clamp(36px, 4vw, 60px)/1.13 var(--font-display);
  letter-spacing: -0.05em;
}

.admin-login__visual > span {
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 9%;
  color: rgba(255, 255, 255, 0.6);
  font: 700 9px/1 var(--font-display);
  letter-spacing: 0.15em;
}

.admin-login__form-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.admin-login__form-wrap > .brand {
  position: absolute;
  top: 42px;
  left: 9%;
}

.admin-login__form {
  width: min(390px, 100%);
}

.admin-login__form h1 {
  margin-top: 20px;
  font: 700 36px/1.12 var(--font-display);
  letter-spacing: -0.04em;
}

.admin-login__form > p {
  margin: 12px 0 30px;
  color: #7b838a;
  font-size: 12px;
  line-height: 1.55;
}

.admin-login__form > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
  color: #606970;
  font: 650 9px/1 var(--font-display);
}

.admin-login__form input {
  width: 100%;
  height: 48px;
  border: 1px solid #d6dade;
  border-radius: 0;
  outline: none;
  padding: 0 14px;
  font-size: 12px;
}

.admin-login__form input:focus {
  border-color: var(--amber);
}

.password-field {
  position: relative;
}

.password-field button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #7b848c;
  cursor: pointer;
}

.admin-login__form .button {
  width: 100%;
  margin-top: 24px;
}

.admin-login__form > small {
  display: block;
  margin-top: 15px;
  color: #969ca1;
  font-size: 9px;
  text-align: center;
}

.admin-back {
  position: absolute;
  bottom: 35px;
  left: 9%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #777f86;
  font: 650 9px/1 var(--font-display);
}

.admin-back svg {
  transform: rotate(180deg);
}

@media (max-width: 1240px) {
  :root {
    --container: min(1120px, calc(100vw - 52px));
  }

  .nav-link {
    padding-inline: 11px;
    font-size: 10px;
  }

  .nav-link::after {
    right: 11px;
    left: 11px;
  }

  .header-contact {
    display: none;
  }

  .about-home__grid,
  .services__layout {
    gap: 70px;
  }

  .footer-grid {
    gap: 40px;
  }

  .admin-content {
    padding-inline: 24px;
  }

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

  .admin-inline-form {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    cursor: pointer;
  }

  .hero-copy {
    width: 75%;
  }

  .about-home__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }

  .about-home__metric {
    right: -10px;
  }

  .numbers__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .numbers__title {
    grid-column: span 4;
    margin-bottom: 45px;
  }

  .inner-layout__grid {
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 45px;
  }

  .project-category__lead {
    grid-template-columns: 1fr 1fr;
  }

  .project-category__info {
    padding: 38px;
  }

  .project-category__info dl {
    grid-template-columns: 1fr;
  }

  .project-category__info dl div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .project-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-fact:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .project-fact:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-page__head,
  .contact-page__grid {
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
  }

  .footer-contact {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    border-top: 1px solid var(--line-dark);
    padding-top: 35px;
  }

  .footer-contact h3 {
    grid-column: span 4;
    margin-bottom: 4px;
  }

  .admin-app {
    --admin-sidebar: 0px;
  }

  .admin-sidebar {
    width: 248px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-mobile-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin-right: 15px;
  }

  .admin-topbar {
    justify-content: flex-start;
  }

  .admin-user {
    margin-left: auto;
  }

  .admin-content {
    width: 100%;
  }

  .admin-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-project-table__head,
  .admin-project-table > article {
    grid-template-columns: minmax(220px, 1.4fr) 0.65fr 0.8fr 0.7fr 105px;
  }

  .admin-service-grid,
  .admin-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100vw - 36px);
  }

  .section {
    padding: 82px 0;
  }

  .topbar__contacts span:nth-child(2),
  .topbar__contacts a:nth-child(3),
  .topbar__social {
    display: none;
  }

  .site-header {
    height: 78px;
  }

  .site-header .brand__mark {
    width: 39px;
    height: 41px;
  }

  .site-header .brand__type strong {
    font-size: 20px;
  }

  .hero {
    height: calc(100svh - 116px);
    min-height: 610px;
  }

  .hero-copy {
    width: 92%;
  }

  .hero-copy h1 {
    font-size: clamp(49px, 12vw, 74px);
  }

  .hero-copy > p {
    max-width: 520px;
    font-size: 15px;
  }

  .hero-copy__actions {
    align-items: flex-start;
  }

  .hero__scroll,
  .hero__side-note,
  .hero-slide__caption {
    display: none;
  }

  .hero__controls {
    bottom: 20px;
  }

  .intro-bar__inner {
    min-height: 110px;
  }

  .intro-bar p {
    max-width: 430px;
    font-size: 16px;
  }

  .about-home__grid,
  .services__layout,
  .projects-intro__grid,
  .catalog-intro__grid,
  .contact-page__head,
  .contact-page__grid,
  .project-story__grid {
    grid-template-columns: 1fr;
  }

  .about-home__grid,
  .services__layout,
  .projects-intro__grid,
  .catalog-intro__grid,
  .contact-page__head,
  .project-story__grid {
    gap: 55px;
  }

  .about-home__visual {
    width: min(570px, 90%);
  }

  .about-home__image-wrap img {
    aspect-ratio: 1.1;
  }

  .about-home__metric {
    right: -10%;
  }

  .projects-showcase__head,
  .reviews-section__head,
  .project-list-page__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-projects {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card,
  .project-card--large {
    grid-column: span 1;
    grid-row: auto;
  }

  .project-card--large {
    grid-column: span 2;
  }

  .services__intro {
    position: static;
  }

  .manifesto,
  .manifesto__content {
    min-height: 560px;
  }

  .number-item {
    padding-inline: 18px;
  }

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

  .review-card {
    min-height: 260px;
  }

  .site-footer__signal {
    display: flex;
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-inline: 18px;
  }

  .site-footer__signal a {
    position: static;
  }

  .page-banner {
    height: 300px;
  }

  .inner-layout__grid {
    grid-template-columns: 1fr;
  }

  .corporate-sidebar {
    position: static;
    order: 2;
  }

  .corporate-content {
    order: 1;
  }

  .sidebar-block,
  .sidebar-cta {
    display: none;
  }

  .corporate-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .quick-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-menu__title {
    grid-column: span 2;
  }

  .quick-menu > a:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .project-category__head {
    grid-template-columns: 55px 1fr;
  }

  .project-category__head > a {
    grid-column: 2;
    justify-self: start;
  }

  .project-category__lead {
    grid-template-columns: 1fr;
  }

  .project-category__image {
    min-height: 450px;
  }

  .project-category__info dl {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-category__info dl div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 14px;
  }

  .project-category__more {
    grid-template-columns: 1fr;
  }

  .project-hero {
    height: 82svh;
    min-height: 650px;
  }

  .project-hero__content h1 {
    font-size: clamp(56px, 12vw, 90px);
  }

  .project-hero__progress {
    width: 65vw;
  }

  .project-story__title .vertical-word {
    display: none;
  }

  .project-gallery__grid button.is-large {
    height: 470px;
  }

  .project-gallery__grid button {
    height: 290px;
  }

  .catalog-intro__actions {
    align-items: flex-start;
  }

  .book-stage,
  .book-controls {
    width: 92vw;
  }

  .contact-details {
    align-self: auto;
  }

  .contact-map {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.8fr;
  }

.admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-responsive-table {
    overflow-x: auto;
  }

  .admin-project-table__head,
  .admin-project-table > article {
    min-width: 850px;
  }

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

  .admin-content-card {
    grid-template-columns: 30px 90px 1fr 55px 100px;
  }

  .admin-content-card > img {
    width: 90px;
    height: 65px;
  }

  .admin-login {
    grid-template-columns: 1fr;
  }

  .admin-login__visual {
    display: none;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100vw - 30px);
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .topbar {
    height: 34px;
  }

  .topbar__contacts {
    width: 100%;
    justify-content: center;
  }

  .site-header {
    height: 72px;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .site-header .brand__type strong {
    font-size: 18px;
  }

  .site-header .brand__type small {
    font-size: 7px;
  }

  .site-header .brand__mark {
    width: 34px;
    height: 37px;
    padding: 6px 5px;
  }

  .header-actions {
    margin-left: 0;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .hero {
    height: calc(100svh - 106px);
    min-height: 590px;
  }

  .hero-slide__overlay {
    background: linear-gradient(90deg, rgba(5, 14, 27, 0.92), rgba(5, 14, 27, 0.42)), linear-gradient(0deg, rgba(5, 14, 27, 0.72), transparent 60%);
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 10px;
  }

  .hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(43px, 13.2vw, 58px);
  }

  .hero-copy > p {
    margin-top: 21px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-copy__actions {
    gap: 19px;
    margin-top: 28px;
  }

  .hero-copy__actions .text-link {
    display: none;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .hero__controls > button {
    width: 37px;
    height: 37px;
  }

  .intro-bar__inner {
    min-height: 125px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .intro-bar p {
    font-size: 15px;
  }

  .about-home__visual {
    width: 95%;
  }

  .about-home__image-wrap {
    padding: 0 0 35px 26px;
  }

  .about-home__image-wrap img {
    aspect-ratio: 0.95;
  }

  .about-home__metric {
    right: -6%;
    width: 205px;
    min-height: 100px;
    padding: 18px;
  }

  .about-home__metric strong {
    font-size: 45px;
  }

  .values-inline {
    grid-template-columns: 1fr;
  }

  .values-inline div {
    min-height: 80px;
  }

  .values-inline div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .projects-showcase__head {
    margin-bottom: 40px;
  }

  .featured-projects,
  .project-grid--all {
    grid-template-columns: 1fr;
  }

  .project-card--large {
    grid-column: span 1;
  }

  .project-card--large .project-card__media img,
  .project-card__media img {
    aspect-ratio: 1.2;
  }

  .service-row {
    grid-template-columns: 28px 48px 1fr;
    gap: 14px;
    min-height: 135px;
  }

  .service-row__icon {
    width: 46px;
    height: 46px;
  }

  .service-row__copy h3 {
    font-size: 17px;
  }

  .service-row__copy p {
    font-size: 12px;
  }

  .service-row__arrow {
    display: none;
  }

  .manifesto blockquote {
    font-size: 37px;
  }

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

  .numbers__title {
    grid-column: span 2;
  }

  .number-item {
    min-height: 130px;
    border-bottom: 1px solid var(--line);
    padding: 10px 15px;
  }

  .number-item:nth-child(odd) {
    border-left: 0;
  }

  .review-card {
    padding: 27px;
  }

  .google-score {
    min-width: auto;
  }

  .map-panel {
    height: 500px;
  }

  .map-panel__card {
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    width: auto;
    padding: 28px;
    transform: none;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp small {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 70px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
    padding-top: 60px;
  }

  .footer-about,
  .footer-contact {
    grid-column: span 2;
  }

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

  .footer-contact h3 {
    grid-column: span 1;
  }

  .footer-bottom {
    min-height: 95px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .page-banner {
    height: 275px;
  }

  .page-banner h1 {
    font-size: 42px;
  }

  .page-banner__index {
    display: none;
  }

  .corporate-content__top h2 {
    font-size: 36px;
  }

  .corporate-content__top .lead {
    font-size: 16px;
  }

  .corporate-visual img {
    height: 300px;
  }

  .founder-visual {
    grid-template-columns: 1fr;
  }

  .founder-visual img {
    height: 390px;
  }

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

  .quick-menu__title {
    grid-column: span 1;
  }

  .quick-menu > a:nth-child(even) {
    border-right: 0;
  }

  .corporate-quote {
    padding: 30px;
  }

  .corporate-quote p {
    font-size: 19px;
  }

  .career-row {
    grid-template-columns: 1fr 46px;
    gap: 15px;
  }

  .career-row > p {
    grid-column: 1;
  }

  .career-row > a {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .career-general {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .project-category {
    padding: 75px 0;
  }

  .project-category__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-category__head > a {
    grid-column: 1;
  }

  .project-category__image {
    min-height: 330px;
  }

  .project-category__info {
    padding: 31px 24px;
  }

  .project-category__info h3 {
    font-size: 29px;
  }

  .project-category__info dl {
    grid-template-columns: 1fr;
  }

  .project-category__info dl div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .project-mini-card {
    grid-template-columns: 95px 1fr auto;
    min-height: 90px;
    gap: 14px;
    padding-right: 12px;
  }

  .project-mini-card img {
    width: 95px;
    height: 90px;
  }

  .project-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .project-tabs a {
    padding-inline: 14px;
    white-space: nowrap;
  }

  .project-hero {
    height: 78svh;
    min-height: 590px;
  }

  .project-hero__content h1 {
    font-size: 52px;
  }

  .project-hero__content > a {
    margin-bottom: 30px;
  }

  .project-hero__progress {
    width: 88vw;
    padding: 22px 24px;
  }

  .project-facts__grid {
    grid-template-columns: 1fr;
  }

  .project-fact + .project-fact,
  .project-fact:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-gallery__grid {
    grid-template-columns: 1fr;
  }

  .project-gallery__grid button.is-large {
    grid-column: span 1;
  }

  .project-gallery__grid button,
  .project-gallery__grid button.is-large {
    height: 310px;
  }

  .book-stage {
    width: 96vw;
    aspect-ratio: 0.9;
  }

  .book-page__copy {
    max-width: 84%;
  }

  .book-page__copy h2 {
    font-size: 36px;
  }

  .book-controls {
    width: 94vw;
  }

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

  .contact-details > div:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .admin-topbar {
    height: 66px;
    padding: 0 14px;
  }

  .admin-user p {
    display: none;
  }

  .admin-content {
    padding: 24px 14px 60px;
  }

  .admin-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-metrics,
  .admin-service-grid,
  .admin-review-grid,
  .admin-form-grid--2,
  .admin-form-grid--4 {
    grid-template-columns: 1fr;
  }

  .admin-form-section,
  .admin-inline-editor {
    padding: 22px 16px;
  }

  .admin-save-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 16px;
  }

  .admin-save-bar--compact {
    margin: 15px -16px -22px;
  }

  .admin-content-card {
    position: relative;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .admin-content-card__order,
  .admin-order-actions {
    display: none;
  }

  .admin-content-card > img {
    width: 78px;
    height: 62px;
  }

  .admin-content-card .admin-row-actions {
    grid-column: span 2;
    justify-content: flex-start;
  }

  .admin-project-list article {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 14px;
  }

  .admin-project-list article > b,
  .admin-project-list article > p {
    display: none;
  }

  .admin-project-list article > div {
    min-width: 0;
  }

  .admin-project-list article > div strong,
  .admin-project-list article > div span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-quick > button span {
    min-width: 0;
  }

  .admin-inline-form {
    grid-template-columns: 1fr;
    padding-bottom: 18px;
  }

  .admin-job-list article,
  .admin-download-list article {
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
  }

  .admin-job-list article > p,
  .admin-job-list article > b {
    grid-column: 2;
  }

  .admin-job-list .admin-row-actions,
  .admin-download-list .admin-row-actions {
    grid-column: 3;
    grid-row: 1 / span 3;
    flex-direction: column;
  }

  .admin-download-list article > b {
    grid-column: 2;
  }

  .admin-login__form-wrap {
    padding: 34px 24px;
  }

  .admin-login__form-wrap > .brand {
    top: 28px;
    left: 24px;
  }

  .admin-back {
    bottom: 25px;
    left: 24px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
