:root {
  --ink: #101417;
  --muted: #65717b;
  --line: #dfe6e8;
  --paper: #f7f9f8;
  --green: #02c957;
  --blue: #0b75d1;
  --yellow: #f5d53f;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 248, .88);
  border-bottom: 1px solid rgba(16, 20, 23, .08);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; border: 2px solid var(--ink); }
.nav-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
nav { display: flex; align-items: center; gap: 22px; color: #3f4a51; font-size: 14px; font-weight: 700; }
.langs { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 800; }
.langs a { padding: 7px 8px; border-radius: 999px; color: #56636c; }
.langs a.active { color: var(--ink); background: var(--white); border: 2px solid var(--ink); padding: 5px 8px; }
.nav-cta {
  border: 2px solid var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 56px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #243039;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 36px; height: 4px; background: var(--green); border: 2px solid var(--ink); }
h1 {
  margin: 0;
  max-width: 760px;
  font-size: 68px;
  line-height: .96;
  letter-spacing: 0;
}
.lead {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.55;
  color: #4f5c65;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  background: var(--green);
  box-shadow: 4px 4px 0 var(--ink);
}
.button.secondary { background: var(--white); }
.mascot-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.mascot-stage::before {
  content: "";
  position: absolute;
  inset: 34px 0 0 30px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  transform: rotate(-5deg);
  z-index: -2;
}
.mascot-stage::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: 8px;
  bottom: 22px;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 50%;
  z-index: -1;
}
.mascot-stage img {
  width: min(520px, 100%);
  height: auto;
  border-radius: 28px;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  background: #071014;
}
section { padding: 78px 0; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 30px; }
h2 { margin: 0; font-size: 38px; line-height: 1.08; letter-spacing: 0; }
.section-head p { max-width: 440px; margin: 0; color: var(--muted); line-height: 1.6; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 24px;
  min-height: 210px;
  box-shadow: 5px 5px 0 rgba(16, 20, 23, .88);
}
.card strong { display: block; font-size: 18px; margin-bottom: 14px; }
.card p { margin: 0; color: #52606a; line-height: 1.6; }
.number { font-size: 42px; font-weight: 900; color: var(--green); -webkit-text-stroke: 1px var(--ink); margin-bottom: 18px; }
.work-band { background: #101417; color: var(--white); padding: 82px 0; }
.work-band .section-head p { color: #b6c1c9; }
.work-list { display: grid; gap: 12px; margin-top: 32px; }
.work-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  font-size: 22px;
}
.work-item span { color: #9fb0bc; font-size: 15px; font-weight: 700; text-align: right; max-width: 420px; }
.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 92px;
}
.contact p { margin: 16px 0 0; color: var(--muted); line-height: 1.6; max-width: 560px; }
footer { padding: 26px 0; border-top: 1px solid var(--line); color: #6b767e; font-size: 14px; }
@media (max-width: 920px) {
  .nav { align-items: flex-start; }
  .nav-right { gap: 12px; }
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .contact { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  .mascot-stage { min-height: auto; padding-top: 20px; }
  .grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .work-item { display: block; font-size: 20px; }
  .work-item span { display: block; text-align: left; margin-top: 8px; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { display: block; }
  .nav-right { margin-top: 12px; justify-content: flex-start; }
  h1 { font-size: 40px; }
  .lead { font-size: 18px; }
}
.process-photos {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(16, 20, 23, .88);
}
.photo-card.large { min-height: 540px; }
.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.photo-stack { display: grid; gap: 18px; }
.photo-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.button.disabled,
.button[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
  background: #dfe5e8;
  color: #6b767e;
  box-shadow: 3px 3px 0 rgba(16, 20, 23, .5);
}
.note-line {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 860px) {
  .process-photos { grid-template-columns: 1fr; }
  .photo-card.large, .photo-card { min-height: 260px; }
}
