:root {
  --paper: #ffffff;
  --surface: #f3f5f8;
  --navy: #1b2c4f;
  --ink: #1f2532;
  --steel: #5b6275;
  --hairline: #dce0e7;
  --red: #da1f26;
  --red-press: #b81a20;
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.label .mark {
  color: var(--red);
  font-weight: 600;
}
a {
  color: inherit;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand img {
  height: 54px;
  width: auto;
  display: block;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--steel);
  transition: color 0.15s;
}
.nav nav a:hover {
  color: var(--navy);
}
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 20px;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.05s;
}
.btn:active {
  transform: translateY(1px);
}
.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn.ghost:hover {
  background: var(--navy);
  color: #fff;
}
.nav-toggle {
  display: none;
}
a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.hero {
  padding: 84px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--navy);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero .lead {
  margin-top: 26px;
  max-width: 48ch;
  font-size: 19px;
  color: var(--steel);
  line-height: 1.5;
}
.hero .cta-row {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dim {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.dim .line {
  height: 1px;
  background: var(--navy);
  flex: 0 0 56px;
  position: relative;
}
.dim .line::before,
.dim .line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: var(--navy);
}
.dim .line::before {
  left: 0;
}
.dim .line::after {
  right: 0;
}
.credstrip {
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cred {
  padding: 20px 22px;
  border-right: 1px solid var(--hairline);
}
.cred:last-child {
  border-right: 0;
}
.cred .n {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
}
.cred .t {
  margin-top: 8px;
}
.ph {
  position: relative;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--hairline);
  overflow: hidden;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 13px,
    rgba(27, 44, 79, 0.05) 13px 14px
  );
}
.ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph .ph-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel);
  background: var(--paper);
  padding: 4px 9px;
  border: 1px solid var(--hairline);
}
.ph.r43 {
  aspect-ratio: 4/3;
}
.ph.r11 {
  aspect-ratio: 1/1;
}
section {
  padding: 88px 0;
}
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1;
  max-width: 18ch;
  color: var(--navy);
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--navy);
}
.svc {
  padding: 34px 30px 38px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  transition: background 0.18s;
}
.svc:nth-child(3n) {
  border-right: 0;
}
.svc:hover {
  background: var(--surface);
}
.svc .num {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}
.svc h3 {
  margin: 16px 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.svc p {
  color: var(--steel);
  font-size: 16px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery .ph .meta {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(27, 44, 79, 0.85));
  color: #fff;
}
.gallery .ph .meta .t {
  font-weight: 700;
  font-size: 16px;
}
.gallery .ph .meta .s {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-top: 3px;
}
.contact h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
.contact .lead {
  margin-top: 22px;
  color: var(--steel);
  max-width: 42ch;
  font-size: 18px;
}
.cta-big {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.info {
  border-top: 1px solid var(--hairline);
}
.info .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.info .row .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: 3px;
}
.info .row .v {
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  color: var(--navy);
}
.info .row a.v:hover {
  color: var(--red);
}
footer {
  background: var(--navy);
  padding: 40px 0;
}
.foot {
  display: flex;
  justify-content: center;
  text-align: center;
}
.foot .label {
  color: #9aa4ba;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 880px) {
  section {
    padding: 64px 0;
  }
  .hero {
    padding: 50px 0 44px;
  }
  .sec-head {
    margin-bottom: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .svc {
    border-right: 0;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .nav nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
@media (max-width: 520px) {
  .wrap {
    padding: 0 20px;
  }
  .nav {
    height: 64px;
  }
  .brand img {
    height: 44px;
  }
  section {
    padding: 52px 0;
  }
  .hero h1 {
    font-size: 42px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .credstrip {
    grid-template-columns: 1fr;
  }
  .cred {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .cred:last-child {
    border-bottom: 0;
  }
  .foot {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .cta-big {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-big .btn {
    width: 100%;
    text-align: center;
  }
}
.nav-toggle {
  background: var(--navy);
  color: #fff;
  border: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-decoration: none;
}
