@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --ink: #17211f;
  --paper: #f6f2ec;
  --lime: #d7ff45;
  --coral: #ff6957;
  --aqua: #a8e7df;
  --line: rgba(23, 33, 31, 0.18);
  --muted: #65716e;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.page {
  overflow: hidden;
}
.shell {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
}
.eyebrow {
  font:
    500 11px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.065em;
}
.serif {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.06em;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--ink);
}
.button.dark {
  background: var(--ink);
  color: var(--paper);
}
.button.lime {
  background: var(--lime);
}
.arrow {
  font-size: 20px;
  line-height: 0.7;
}

.announcement {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  text-align: center;
  font:
    500 11px/1.2 "DM Mono",
    monospace;
}
.announcement b {
  color: var(--lime);
}
.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.065em;
}
.brand .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  border-radius: 50%;
  background: var(--coral);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font:
    500 12px "DM Mono",
    monospace;
}
.nav-links a {
  opacity: 0.63;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}
.nav-links a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--coral);
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  font:
    700 12px "DM Mono",
    monospace;
}

.home-hero {
  position: relative;
  min-height: 670px;
  padding: 82px 0 48px;
  border-bottom: 1px solid var(--line);
}
.home-hero:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -90px;
  top: 70px;
  border-radius: 50%;
  background: var(--aqua);
  opacity: 0.72;
}
.home-hero:after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: 45%;
  bottom: -130px;
  border-radius: 50%;
  background: var(--coral);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero-copy h1 {
  max-width: 940px;
  margin: 20px 0 32px;
  font-size: clamp(58px, 9.1vw, 136px);
  line-height: 0.86;
  letter-spacing: -0.095em;
}
.hero-copy h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 68px;
}
.hero-bottom p {
  max-width: 365px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}
.hero-stamp {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  transform: rotate(12deg);
  text-align: center;
  font:
    500 11px/1.25 "DM Mono",
    monospace;
}
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  font:
    700 15px "DM Mono",
    monospace;
  animation: move 25s linear infinite;
}
.ticker span {
  margin-right: 28px;
}
.ticker i {
  color: var(--coral);
  font-style: normal;
}
@keyframes move {
  to {
    transform: translateX(-50%);
  }
}

.intro {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 100px;
}
.intro aside {
  padding-top: 12px;
}
.intro p {
  margin: 27px 0 0;
  max-width: 610px;
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.23;
  letter-spacing: -0.055em;
}
.work {
  padding: 28px 0 118px;
}
.work-head,
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}
.work-list {
  border-top: 1px solid var(--ink);
}
.project-row {
  display: grid;
  grid-template-columns: 88px 1.2fr 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 27px 8px;
  border-bottom: 1px solid var(--line);
  transition: 0.2s ease;
}
.project-row:hover {
  background: var(--lime);
  padding-left: 20px;
  padding-right: 20px;
}
.project-index,
.project-kind {
  color: var(--muted);
  font:
    500 11px "DM Mono",
    monospace;
  text-transform: uppercase;
}
.project-name {
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.065em;
}
.project-arrow {
  font-size: 25px;
}
.proof {
  padding: 94px 0;
  background: var(--ink);
  color: var(--paper);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 48px;
}
.stat {
  padding: 28px 28px 28px 0;
  min-height: 220px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.stat:not(:first-child) {
  padding-left: 28px;
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--lime);
}
.stat p {
  max-width: 190px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cta-band {
  padding: 95px 0;
  background: var(--coral);
}
.cta-band h2 {
  max-width: 770px;
  margin: 18px 0 33px;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.page-hero {
  padding: 92px 0 75px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 970px;
  margin: 20px 0 0;
  font-size: clamp(58px, 8.5vw, 123px);
  line-height: 0.88;
  letter-spacing: -0.092em;
}
.page-hero p {
  max-width: 525px;
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 1.65;
}
.page-hero.split {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  align-items: end;
  gap: 60px;
}
.page-hero.split p {
  margin: 0;
}
.story {
  padding: 115px 0;
  display: grid;
  grid-template-columns: 0.88fr 1.55fr;
  gap: 110px;
}
.story-copy p {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.055em;
  margin: 0;
}
.story-copy p + p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  margin-top: 28px;
  max-width: 620px;
}
.shape-panel {
  min-height: 465px;
  position: relative;
  background: var(--aqua);
  border-radius: 2px;
  overflow: hidden;
}
.shape-panel:before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -15px;
  right: 16%;
  border-radius: 50%;
  background: var(--lime);
}
.shape-panel:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 14%;
  width: 72%;
  height: 52%;
  background: var(--ink);
  clip-path: polygon(0 100%, 0 35%, 42% 0, 100% 33%, 100% 100%);
}
.shape-panel span {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  color: var(--paper);
  font:
    500 12px "DM Mono",
    monospace;
}
.values {
  padding: 20px 0 120px;
}
.value-list {
  border-top: 1px solid var(--ink);
}
.value {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 35px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.value h3 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.065em;
}
.value p {
  max-width: 380px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.number {
  font:
    500 11px "DM Mono",
    monospace;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 36px 0 45px;
}
.filter {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font:
    500 11px "DM Mono",
    monospace;
  cursor: pointer;
}
.filter.active,
.filter:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-bottom: 120px;
}
.case-card {
  display: block;
}
.case-visual {
  position: relative;
  aspect-ratio: 1.1;
  overflow: hidden;
  background: var(--aqua);
  transition: transform 0.25s ease;
}
.case-card:hover .case-visual {
  transform: scale(0.985);
}
.case-card:nth-child(2) .case-visual {
  background: var(--coral);
}
.case-card:nth-child(3) .case-visual {
  background: var(--lime);
}
.case-card:nth-child(4) .case-visual {
  background: #beadff;
}
.case-card:nth-child(5) .case-visual {
  background: #f2c0db;
}
.case-card:nth-child(6) .case-visual {
  background: #dbded9;
}
.case-visual:before,
.case-visual:after {
  content: "";
  position: absolute;
}
.case-visual:before {
  width: 56%;
  height: 56%;
  left: 12%;
  top: 13%;
  background: var(--ink);
  border-radius: 50% 50% 2px 50%;
  transform: rotate(-24deg);
}
.case-visual:after {
  width: 37%;
  height: 37%;
  right: 10%;
  bottom: 11%;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.case-card:nth-child(2) .case-visual:before {
  border-radius: 0;
  background: var(--paper);
  transform: rotate(20deg);
  left: 24%;
  top: 14%;
}
.case-card:nth-child(2) .case-visual:after {
  border: 0;
  border-radius: 0;
  background: var(--ink);
  right: 8%;
  bottom: 7%;
  transform: rotate(-28deg);
}
.case-card:nth-child(3) .case-visual:before {
  width: 100%;
  height: 39%;
  left: 0;
  top: 32%;
  border-radius: 0;
  background: var(--coral);
  transform: skewY(-10deg);
}
.case-card:nth-child(3) .case-visual:after {
  background: var(--ink);
  border: 0;
  width: 28%;
  height: 78%;
  right: 20%;
  bottom: 0;
  border-radius: 150px 150px 0 0;
}
.case-card:nth-child(4) .case-visual:before {
  background: var(--lime);
  border-radius: 0;
  transform: rotate(32deg);
  left: 17%;
  top: 17%;
}
.case-card:nth-child(4) .case-visual:after {
  background: var(--coral);
  border: 0;
  width: 26%;
  height: 26%;
  right: 17%;
  bottom: 15%;
}
.case-card:nth-child(5) .case-visual:before {
  background: transparent;
  border: 25px solid var(--ink);
  width: 65%;
  height: 65%;
  border-radius: 50%;
  left: 18%;
  top: 19%;
  transform: none;
}
.case-card:nth-child(5) .case-visual:after {
  border: 0;
  background: var(--lime);
  width: 27%;
  height: 27%;
  right: 8%;
  bottom: 5%;
}
.case-card:nth-child(6) .case-visual:before {
  background: var(--ink);
  border-radius: 0;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
}
.case-card:nth-child(6) .case-visual:after {
  background: var(--lime);
  border: 0;
  border-radius: 0;
  width: 40%;
  height: 45%;
  right: 13%;
  bottom: 15%;
  transform: rotate(45deg);
}
.case-caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
}
.case-caption h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.055em;
}
.case-caption p {
  margin: 4px 0 0;
  font:
    500 11px "DM Mono",
    monospace;
  color: var(--muted);
}
.case-year {
  font:
    500 11px "DM Mono",
    monospace;
}

.service-list {
  padding: 64px 0 120px;
}
.service {
  display: grid;
  grid-template-columns: 105px 1fr 0.9fr auto;
  align-items: start;
  gap: 28px;
  padding: 33px 0;
  border-top: 1px solid var(--line);
}
.service:last-child {
  border-bottom: 1px solid var(--line);
}
.service h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 45px);
  line-height: 1;
  letter-spacing: -0.07em;
}
.service p {
  max-width: 390px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.service .arrow {
  font-size: 24px;
}
.process {
  padding: 100px 0;
  background: var(--aqua);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--ink);
}
.step {
  min-height: 220px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--line);
}
.step:not(:first-child) {
  padding-left: 20px;
}
.step:last-child {
  border-right: 0;
}
.step h3 {
  margin: 52px 0 0;
  font-size: 23px;
  letter-spacing: -0.055em;
}
.step p {
  font-size: 13px;
  line-height: 1.6;
}
.faq {
  padding: 115px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 100px;
}
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  font:
    400 24px "DM Mono",
    monospace;
}
.faq-item[open] summary:after {
  content: "–";
}
.faq-item p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-layout {
  padding: 86px 0 120px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
}
.contact-title {
  margin: 19px 0 32px;
  font-size: clamp(59px, 8vw, 115px);
  line-height: 0.88;
  letter-spacing: -0.09em;
}
.contact-intro {
  font-size: 17px;
  line-height: 1.65;
  max-width: 420px;
}
.contact-details {
  margin-top: 55px;
  border-top: 1px solid var(--ink);
}
.contact-detail {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.contact-detail span {
  color: var(--muted);
  font:
    500 11px "DM Mono",
    monospace;
}
.contact-form {
  padding: 31px;
  background: var(--ink);
  color: var(--paper);
}
.contact-form h2 {
  font-size: 27px;
  letter-spacing: -0.06em;
  margin: 0 0 26px;
}
.field {
  display: block;
  margin-top: 18px;
  font:
    500 10px "DM Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.field input,
.field textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  outline: 0;
  background: transparent;
  color: var(--paper);
  font:
    400 15px Manrope,
    sans-serif;
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form .button {
  margin-top: 28px;
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
}
.form-message {
  display: none;
  margin: 14px 0 0;
  color: var(--lime);
  font-size: 13px;
}
.form-message.show {
  display: block;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 50px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
.footer-title {
  max-width: 650px;
  margin: 18px 0 40px;
  font-size: clamp(35px, 5vw, 67px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.65);
  font:
    500 11px "DM Mono",
    monospace;
}
.footer-meta a:hover {
  color: var(--lime);
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }
  .nav {
    height: 70px;
  }
  .menu-button {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .home-hero {
    min-height: 590px;
    padding-top: 58px;
  }
  .home-hero:before {
    width: 240px;
    height: 240px;
    top: 145px;
    right: -110px;
  }
  .hero-bottom {
    margin-top: 52px;
    align-items: end;
  }
  .hero-stamp {
    width: 93px;
    height: 93px;
    font-size: 9px;
  }
  .intro,
  .story,
  .faq-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .project-row {
    grid-template-columns: 45px 1fr auto;
    gap: 12px;
  }
  .project-kind {
    display: none;
  }
  .proof {
    padding: 70px 0;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .stat,
  .stat:not(:first-child) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .page-hero,
  .page-hero.split {
    display: block;
    padding: 62px 0;
  }
  .page-hero.split p {
    margin-top: 26px;
  }
  .shape-panel {
    min-height: 340px;
  }
  .value {
    grid-template-columns: 45px 1fr;
    gap: 16px;
  }
  .value p {
    grid-column: 2;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .filters {
    padding-top: 26px;
  }
  .service {
    grid-template-columns: 42px 1fr auto;
    gap: 15px;
  }
  .service p {
    grid-column: 2;
  }
  .process {
    padding: 70px 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step,
  .step:not(:first-child) {
    min-height: 170px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }
  .step:nth-child(2) {
    border-right: 0;
  }
  .step h3 {
    margin-top: 32px;
  }
  .contact-layout {
    gap: 45px;
  }
  .footer-top,
  .footer-meta {
    flex-direction: column;
  }
  .footer-meta {
    gap: 10px;
  }
  .cta-band {
    padding: 70px 0;
  }
}
