@font-face {
  font-family: "Proxima Nova";
  src: url("assets/fonts/proxima-nova-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --ink: #0d0d0d;
  --paper: #fff;
  --yellow: #ffc83d;
  --muted: #f5f5f3;
  --max: 1940px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Proxima Nova", Arial, sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand { font-family: "Space Grotesk", sans-serif; }
h1, h2 { font-weight: 400; letter-spacing: normal; }
h1 { margin-bottom: 34px; font-size: clamp(3.125rem, 3.9vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2.375rem, 3vw, 3.8rem); line-height: 1.3; }
h3 { font-size: 1.375rem; line-height: 1.4; }
p { font-size: 1rem; }

.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 15px; background: var(--ink); color: #fff; }
.skip-link:focus { transform: none; }
.section-shell, .footer-shell { width: min(calc(100% - 11vw), var(--max)); margin-inline: auto; }
.site-header { min-height: 145px; padding: 42px 5.5vw; display: flex; align-items: flex-start; justify-content: space-between; background: white; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1.08; }
.brand img { flex: 0 0 auto; }
.brand strong { display: block; font-size: 1.375rem; }
.brand small { display: block; margin-top: 6px; font-size: .79rem; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 2.3vw, 48px); padding-top: 2px; }
.site-nav > a { text-decoration: none; white-space: nowrap; }
.site-nav > a:not(.button):hover { text-decoration: underline; text-underline-offset: 4px; }
.button { display: inline-block; border: 1.5px solid var(--ink); border-radius: 4px; padding: 11px 20px; font-weight: 700; letter-spacing: .02em; text-decoration: none; }
.button-yellow { background: var(--yellow); }
.button-black { background: var(--ink); color: #fff; }
.button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero { min-height: 680px; display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 9vw; padding-block: 45px 90px; }
.hero-copy { max-width: 630px; }
.hero-copy > p { max-width: 600px; margin-bottom: 36px; font-size: clamp(1rem, 1.1vw, 1.25rem); }
.hero-art { width: min(100%, 690px); justify-self: center; }
.feature-strip { display: flex; gap: 36px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-strip li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; line-height: 1.15; }
.feature-strip img { width: 38px; height: 38px; object-fit: contain; flex: 0 0 auto; }

.intro-band {
  position: relative;
  margin-top: 32px;
  padding: 105px 0 135px;
  background: var(--yellow);
}
.intro-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -51px;
  height: 52px;
  background: url("assets/intro-curve.svg") no-repeat bottom / 100% 100%;
  pointer-events: none;
}
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 11vw; }
.two-column article { max-width: 610px; }
.two-column h2 { max-width: 500px; }

.solutions { padding-block: 145px 180px; }
.section-heading { max-width: 640px; margin-bottom: 95px; }
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6vw; }
.solution-grid img { width: 100%; aspect-ratio: 452 / 596; object-fit: cover; border: 2px solid var(--ink); border-radius: 6px; }
.solution-grid h3 { margin: 34px 0 22px; max-width: 260px; }
.solution-grid p { max-width: 320px; font-size: .98rem; }

.crafted { min-height: 920px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 12vw; padding-block: 90px 155px; }
.crafted > img { width: min(100%, 720px); }
.crafted > div { max-width: 650px; }
.crafted-features { margin-top: 55px; }

.services { padding-block: 80px 180px; }
.services > h2 { margin-bottom: 105px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: center; gap: 8vw; }
.service-card { width: min(100%, 390px); min-height: 500px; position: relative; padding: 78px 45px 110px; border: 3px solid var(--ink); border-radius: 10px; background: #fff; }
.window-dots { position: absolute; inset: 0 0 auto; height: 42px; padding: 8px 18px; border-bottom: 3px solid var(--ink); border-radius: 7px 7px 0 0; background: var(--yellow); letter-spacing: 3px; font-size: .72rem; }
.service-card p { font-size: 1rem; }
.service-label { position: absolute; left: -38px; right: 26px; bottom: -35px; display: flex; align-items: center; justify-content: space-between; }
.service-icon-art { width: 145px; height: 145px; object-fit: contain; flex: 0 0 auto; }

.final-cta { text-align: center; padding-top: 160px; overflow: hidden; }
.final-cta h2 { max-width: 950px; margin: 0 auto 40px; }
.final-cta img { width: min(100%, 1060px); margin: 80px auto -6px; }

.site-footer { background: var(--yellow); }
.footer-shell { padding: 95px 0 80px; }
.footer-brand { margin-bottom: 75px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr); gap: 12vw; max-width: 1250px; }
.footer-grid h2 { font-size: 1.45rem; font-weight: 600; letter-spacing: 0; margin-bottom: 30px; }
.footer-grid p, .footer-grid a { font-size: .95rem; }
.footer-grid section > a { display: block; margin-bottom: 20px; }
.contact-pair { display: flex; gap: 65px; margin-top: 55px; }
.contact-pair a { text-decoration: none; }
.copyright { margin: 0; padding: 12px; text-align: center; background: var(--ink); color: white; font-size: .78rem; }

.motion-ready .reveal,
.motion-ready .reveal-up,
.motion-ready .reveal-left,
.motion-ready .reveal-right {
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(.445, .05, .55, .95), transform 1200ms cubic-bezier(.445, .05, .55, .95);
  will-change: opacity, transform;
}

.motion-ready .reveal-up { transform: translateY(60px); }
.motion-ready .reveal-left { transform: translateX(-60px); }
.motion-ready .reveal-right { transform: translateX(60px); }

.motion-ready .reveal.is-visible,
.motion-ready .reveal-up.is-visible,
.motion-ready .reveal-left.is-visible,
.motion-ready .reveal-right.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.motion-ready .button.reveal.is-visible:hover { transform: translateY(-2px); }

.legal-main { min-height: 720px; padding-block: 120px 170px; }
.legal-content { max-width: 920px; }
.legal-content h1 { margin-bottom: 50px; }
.legal-content h2 { margin: 80px 0 28px; font-size: clamp(2rem, 3vw, 3.5rem); }
.legal-content p, .legal-content li { font-size: 1.08rem; line-height: 1.7; }
.legal-content li { margin-bottom: 10px; }

@media (max-width: 1050px) {
  .site-header { min-height: 110px; align-items: center; padding-block: 28px; }
  .menu-toggle { display: grid; gap: 7px; padding: 10px; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 28px; height: 2px; background: var(--ink); }
  .site-nav { position: absolute; z-index: 20; top: 100px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 22px 5.5vw 30px; border-bottom: 2px solid var(--ink); background: white; }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 13px 0; }
  .site-nav .button { margin-top: 10px; padding-inline: 18px; text-align: center; }
  .hero { grid-template-columns: 1fr 1fr; gap: 5vw; min-height: 650px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); gap: 70px 9vw; }
  .solution-grid img { max-width: 360px; }
  .crafted { min-height: 700px; gap: 7vw; }
  .service-grid { gap: 5vw; }
  .service-card { min-height: 525px; padding-inline: 30px; }
}

@media (max-width: 720px) {
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .section-shell, .footer-shell { width: min(calc(100% - 44px), var(--max)); }
  .brand strong { font-size: 1.02rem; }
  .brand small { font-size: .61rem; }
  .brand img { width: 34px; height: 34px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; padding-block: 60px 80px; }
  .hero-art { order: -1; width: 80%; align-self: center; }
  .feature-strip { flex-wrap: wrap; gap: 20px; }
  .intro-band { margin-top: 16px; padding-block: 80px 95px; }
  .intro-band::before { top: -24px; height: 25px; }
  .two-column { grid-template-columns: 1fr; gap: 70px; }
  .solutions { padding-block: 100px; }
  .section-heading { margin-bottom: 65px; }
  .solution-grid { grid-template-columns: 1fr; gap: 65px; }
  .solution-grid img { width: min(100%, 350px); }
  .crafted { display: flex; flex-direction: column; min-height: auto; padding-block: 70px 120px; }
  .crafted-features { gap: 18px; }
  .services { padding-bottom: 140px; }
  .services > h2 { margin-bottom: 70px; }
  .service-grid { grid-template-columns: 1fr; gap: 100px; }
  .service-card { min-height: 470px; }
  .service-label { left: -8px; right: 10px; }
  .service-icon-art { width: 125px; height: 125px; }
  .final-cta { padding-top: 90px; }
  .final-cta img { margin-top: 55px; }
  .footer-shell { padding-top: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-pair { gap: 30px; flex-wrap: wrap; }
  .legal-main { padding-block: 70px 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .motion-ready .reveal,
  .motion-ready .reveal-up,
  .motion-ready .reveal-left,
  .motion-ready .reveal-right { opacity: 1; transform: none; }
}
