:root {
  --ink: #141414;
  --paper: #f0f0ea;
  --soft: #d9d9d2;
  --muted: #666660;
  --acid: #c8ff29;
  --white: #f8f8f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: "Archivo", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(10px);
}

.brand { display: inline-flex; align-items: center; width: max-content; font-size: 2rem; font-weight: 900; letter-spacing: -.14em; }
.brand-two { display: grid; place-items: center; width: 27px; height: 27px; margin-left: -2px; border-radius: 50%; background: var(--acid); font-size: .78rem; letter-spacing: 0; }
.main-nav { display: flex; gap: clamp(1.2rem, 3vw, 3rem); font-size: .8rem; font-weight: 600; }
.main-nav a, .header-contact { position: relative; }
.main-nav a::after, .header-contact::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .2s ease; }
.main-nav a:hover::after, .header-contact:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 1.2rem; }
.header-contact { font-size: .8rem; font-weight: 600; }
.lang-switch { display: flex; gap: 2px; }
.lang-btn { padding: .3rem .4rem; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: .68rem; font-weight: 700; }
.lang-btn.active { background: var(--ink); color: var(--paper); }

.hero { min-height: min(650px, calc(78svh - 76px)); padding: clamp(2rem, 4vh, 3rem) 4vw 2.5vw; display: flex; flex-direction: column; }
.kicker, .section-heading { font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.hero h1 { margin: auto 0 clamp(1.25rem, 3vh, 2rem); font-size: clamp(4.5rem, 11.5vw, 9.5rem); line-height: .76; letter-spacing: -.09em; text-transform: uppercase; }
.hero h1, .hero h1 em { font-style: normal; font-weight: 900; }
.hero h1 em { color: #777770; }
.hero-bottom { width: 65%; margin-left: auto; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 3rem; }
.hero-bottom p { max-width: 34rem; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.5; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 1.5rem; background: var(--acid); font-size: .85rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.cta:hover { transform: translateY(-4px); background: #b7ec1c; }
.cta b { font-size: 1.4rem; }

.section { padding: clamp(3rem, 5vw, 4.5rem) 4vw; }
.section-heading { margin-bottom: clamp(2rem, 3vw, 2.75rem); }
.section-heading p { margin: 0; }
.services-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; margin-bottom: 2.5rem; }
.services h2, .about h2, .process h2 { margin: 0; font-size: clamp(3.4rem, 6.5vw, 6rem); line-height: .84; letter-spacing: -.075em; text-transform: uppercase; }
.services h2 { white-space: pre-line; }
.services-intro p { max-width: 32rem; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.55; }
.service-list { border-top: 1px solid var(--ink); }
.service-list article { position: relative; display: grid; grid-template-columns: 1fr 1fr 2rem; gap: 2rem; align-items: center; min-height: 88px; border-bottom: 1px solid var(--ink); }
.service-list h3 { margin: 0; font-size: clamp(1.4rem, 2.7vw, 2.4rem); letter-spacing: -.04em; }
.service-list p { max-width: 28rem; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.service-list i { font-size: 1.5rem; font-style: normal; transition: transform .2s ease; }
.service-list article:hover i { transform: translate(5px,-5px); }

.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }
.about h2 em { color: #777770; font-style: normal; }
.about-copy>p { max-width: 34rem; color: var(--muted); font-size: 1.08rem; line-height: 1.55; }
.founders { margin-top: 3rem; display: flex; align-items: flex-start; gap: 1rem; }
.founder { display: grid; justify-items: center; gap: .75rem; width: 132px; }
.founder-photo { width: 132px; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--ink); border-radius: 50%; background: var(--soft); transition: transform .2s ease, border-color .2s ease; }
.founder-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.founder--jp .founder-photo img { object-position: center 38%; transform: scale(1.18); }
.founder-name { position: relative; text-align: center; font-size: .72rem; font-weight: 700; line-height: 1.3; }
.founder-name::after { content: "↗"; margin-left: .3rem; color: var(--muted); }
.founder-name small { display: block; color: var(--muted); font-size: .62rem; font-weight: 500; }
.founder:hover .founder-photo, .founder:focus-visible .founder-photo { transform: translateY(-4px); border-color: var(--acid); }
.founder:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
.founders>i { align-self: flex-start; margin-top: 57px; font-style: normal; }

.process { background: var(--ink); color: var(--white); }
.process-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.process h2 { color: var(--white); }
.process-intro>p { max-width: 32rem; margin: 0; color: #b7b7b0; font-size: 1.08rem; line-height: 1.55; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #555550; border-bottom: 1px solid #555550; }
.process-list article { min-width: 0; padding: 1.5rem; border-right: 1px solid #555550; }
.process-list article:first-child { padding-left: 0; }
.process-list article:last-child { padding-right: 0; border-right: 0; }
.process-list h3 { min-height: 3.2rem; margin: 0 0 .75rem; font-size: 1.25rem; line-height: 1.15; }
.process-list p { margin: 0; color: #b7b7b0; font-size: .83rem; line-height: 1.55; }

.contact { padding: clamp(3rem, 4.5vw, 4rem) 4vw; background: var(--acid); }
.contact-kicker { margin: 0 0 2rem; font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.contact h2 { margin: 0 0 2rem; font-size: clamp(3.6rem, 7vw, 6rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.contact-copy { max-width: 42rem; margin: 0 0 2.5rem; font-size: 1.08rem; line-height: 1.55; }
.contact>a { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); font-size: clamp(1.2rem, 3vw, 2.5rem); font-weight: 700; }
.contact>a b { transition: transform .2s ease; }
.contact>a:hover b { transform: translate(6px,-6px); }

.site-footer { min-height: 150px; padding: 2.5rem 4vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; background: var(--ink); color: var(--white); font-size: .68rem; }
.footer-brand .brand-two { color: var(--ink); }
.site-footer p { margin: 0; letter-spacing: .1em; }
.site-footer>span { justify-self: end; }

@media (max-width: 850px) {
  .site-header { min-height: 66px; padding: 0 20px; grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .header-actions { gap: .7rem; }
  .hero { min-height: auto; padding: 4rem 20px 3rem; }
  .hero h1 { margin: 4rem 0 3rem; font-size: clamp(4rem, 20vw, 7rem); }
  .hero-bottom, .services-intro, .about-grid, .process-intro { width: 100%; margin: 0; grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 20px; }
  .section-heading { margin-bottom: 2.75rem; }
  .services h2, .about h2, .process h2 { font-size: clamp(3.5rem, 16vw, 6rem); }
  .services-intro>* { min-width: 0; }
  .services h2 { overflow-wrap: anywhere; }
  .service-list article { grid-template-columns: 1fr 1.5rem; gap: 1rem; padding: 1.5rem 0; }
  .service-list article p { grid-column: 1; margin: 0; }
  .service-list article i { grid-column: 2; grid-row: 1; }
  .about-copy { display: grid; }
  .founders { justify-content: flex-start; }
  .process-intro { margin-bottom: 3rem; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list article { padding: 1.5rem; border-bottom: 1px solid #555550; }
  .process-list article:nth-child(2n) { border-right: 0; }
  .process-list article:nth-last-child(-n+2) { border-bottom: 0; }
  .process-list article:first-child { padding-left: 0; }
  .process-list article:nth-child(3) { padding-left: 0; }
  .process-list article:last-child { padding-right: 0; }
  .contact { padding: 4rem 20px; }
  .contact h2 { font-size: clamp(4rem, 19vw, 7rem); }
  .site-footer { padding: 2rem 20px; grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 480px) {
  .header-contact { display: none; }
  .hero h1 { font-size: 3.7rem; }
  .services h2, .about h2, .process h2 { font-size: 3.15rem; }
  .process h2 { font-size: 2.9rem; overflow-wrap: anywhere; }
  .hero-bottom { gap: 1.5rem; }
  .service-list article { grid-template-columns: 1fr; }
  .service-list article i { display: none; }
  .service-list article p { grid-column: 1; }
  .founder { width: 110px; }
  .founder-photo { width: 110px; }
  .founders>i { margin-top: 46px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list article, .process-list article:first-child, .process-list article:nth-child(3), .process-list article:last-child { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid #555550; }
  .process-list article:last-child { border-bottom: 0; }
  .process-list h3 { min-height: 0; }
  .contact h2 { font-size: clamp(3rem, 13vw, 3.25rem); overflow-wrap: anywhere; }
  .contact>a { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
