:root {
  --ink:#0a0a0b;
  --blue:#0055ff;
  --paper:#f7f7f8;
  --text:#171719;
  --muted:#52525a;
  --line:#dedee4;
  --font:'Plus Jakarta Sans',system-ui,sans-serif;
  --gutter:clamp(24px,5vw,80px);
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body {
  margin:0;
  color:var(--text);
  font:400 16px/1.7 var(--font);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}

::selection {
  background:var(--blue);
  color:#fff;
}

a {
  color:inherit;
  text-underline-offset:5px;
}

button {
  font:inherit;
}

a,button {
  -webkit-tap-highlight-color:transparent;
}

a:focus-visible,button:focus-visible {
  outline:3px solid #6699ff;
  outline-offset:6px;
}

h1,h2,h3,p {
  margin:0;
}

h1,h2,h3 {
  text-wrap:balance;
}

h1,h2 {
  font-weight:600;
  letter-spacing:-.04em;
  line-height:1.08;
}

h2 {
  font-size:clamp(36px,4.1vw,58px);
}

h3 {
  font-size:22px;
  line-height:1.35;
  letter-spacing:-.025em;
  font-weight:600;
}

.container {
  width:min(100% - var(--gutter)*2,1280px);
  margin-inline:auto;
}

.arrow {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:none;
}

.site-header {
  background:#fff;
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--line);
}

.navigation {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:88px;
  gap:24px;
}

.logo {
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
  letter-spacing:-.04em;
  white-space:nowrap;
}

.logo img {
  object-fit:contain;
}

.nav-links {
  display:flex;
  align-items:center;
  gap:40px;
  margin:0;
  padding:0;
  list-style:none;
  font-size:14px;
  font-weight:600;
}

.nav-links a {
  text-decoration:none;
}

.nav-links a:hover {
  color:var(--blue);
}

.nav-links .nav-contact {
  display:flex;
  align-items:center;
  gap:20px;
  background:var(--paper);
  padding:10px 16px;
  border-radius:6px;
}

.menu-toggle {
  display:none;
}

.hero {
  background:var(--ink);
  color:white;
}

.hero-layout {
  display:grid;
  grid-template-columns:1.25fr 1fr;
  align-items:center;
  gap:64px;
  padding-block:88px 76px;
}

.hero h1 {
  font-size:clamp(48px,5.1vw,74px);
  max-width:740px;
}

.hero h1 span {
  color:#88abff;
}

.hero-content>p {
  color:#b6b6c1;
  font-size:18px;
  line-height:1.8;
  max-width:48ch;
  margin-top:28px;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:36px;
}

.button {
  display:inline-flex;
  gap:20px;
  align-items:center;
  background:#fff;
  color:var(--ink);
  border-radius:6px;
  padding:16px 21px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:background .2s;
}

.button:hover {
  background:#dfe9ff;
}

.button .arrow,.contact-link .arrow {
  transition:transform .25s;
}

.button:hover .arrow,.contact-link:hover .arrow {
  transform:translateX(5px);
}

.text-link {
  font-size:14px;
  color:#d5d5df;
}

.text-link:hover {
  color:white;
}

.brand-art {
  background:var(--blue);
  aspect-ratio:1.04;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
}

.brand-art-inner {
  flex:1;
  min-height:0;
  position:relative;
  margin:35px;
}

.brand-art img {
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  animation:weave-in 1.1s cubic-bezier(.16,1,.3,1) both;
}

.brand-caption {
  display:flex;
  justify-content:space-between;
  margin:0 26px;
  padding:17px 0;
  border-top:1px solid #ffffff66;
  font-size:12px;
  font-weight:500;
}

.hero-footer {
  border-top:1px solid #303036;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-block:23px;
  color:#b6b6c1;
  font-size:12px;
}

.hero-footer a {
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
}

.hero-footer .arrow {
  width:18px;
  height:18px;
}

.section {
  padding-block:112px;
}

.section-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:end;
  margin-bottom:60px;
}

.section-intro p {
  max-width:47ch;
  color:var(--muted);
  font-size:17px;
}

.service-row {
  display:grid;
  grid-template-columns:1fr 1.45fr .6fr;
  gap:48px;
  align-items:start;
  padding:35px 0;
  border-top:1px solid var(--line);
}

.service-row:last-child {
  border-bottom:1px solid var(--line);
}

.service-row p {
  color:var(--muted);
  font-size:15px;
  max-width:58ch;
}

.service-detail {
  font-size:12px;
  color:var(--muted);
  text-align:right;
  padding-top:6px;
}

.about {
  background:var(--paper);
}

.about-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.location {
  color:var(--blue);
  font-size:14px;
  margin-top:28px;
}

.about-lead {
  font-size:24px;
  letter-spacing:-.02em;
  line-height:1.55;
}

.about-copy>p+p {
  color:var(--muted);
  margin-top:24px;
}

.values {
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line);
}

.values h3 {
  font-size:14px;
  letter-spacing:0;
}

.values ul {
  list-style:none;
  display:flex;
  gap:8px 24px;
  flex-wrap:wrap;
  padding:0;
  margin:16px 0 0;
  color:var(--muted);
  font-size:13px;
}

.contact {
  background:var(--blue);
  color:white;
}

.contact-layout {
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:80px;
  align-items:center;
}

.contact h2 {
  font-size:clamp(46px,5vw,72px);
}

.contact-layout>div>p {
  color:#e0e9ff;
  margin-top:24px;
  font-size:15px;
}

.contact-action {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.contact-link {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  width:100%;
  text-decoration:none;
  font-size:clamp(32px,3vw,44px);
  letter-spacing:-.03em;
  border-bottom:1px solid #ffffff80;
  padding-bottom:18px;
}

.contact-link .arrow {
  width:40px;
  height:40px;
}

.email-link {
  margin-top:24px;
  font-size:17px;
}

.contact-action p {
  font-size:12px!important;
  margin-top:10px!important;
}

footer {
  background:var(--ink);
  color:#aaaab7;
  padding-block:36px;
}

.footer-layout {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-logo {
  color:#fff;
  font-size:16px;
}

footer p,footer nav {
  font-size:12px;
}

footer nav {
  display:flex;
  gap:24px;
}

footer nav a {
  text-decoration:none;
}

footer nav a:hover {
  text-decoration:underline;
}

.skip-link {
  position:fixed;
  left:24px;
  top:-100px;
  z-index:100;
  background:#fff;
  color:var(--ink);
  padding:12px 20px;
}

.skip-link:focus {
  top:16px;
}

#main:focus {
  outline:none;
}

@keyframes weave-in {
  from {
    clip-path:inset(0 0 100% 0);
    transform:translateY(12px);
  }
  to {
    clip-path:inset(0);
    transform:translateY(0);
  }
}

@media(min-width:1600px) {
  .hero-layout {
    padding-block:104px 92px;
  }
}

@media(max-width:1050px) {
  .hero-layout {
    gap:32px;
  }
  .hero h1 {
    font-size:56px;
  }
  .hero-content>p {
    font-size:16px;
  }
  .hero-actions {
    gap:18px;
  }
  .brand-art-inner {
    margin:24px;
  }
  .section-intro,.about-layout,.contact-layout {
    gap:48px;
  }
  .service-row {
    grid-template-columns:1fr 1.4fr;
    gap:24px;
  }
  .service-detail {
    display:none;
  }
  .footer-layout {
    flex-wrap:wrap;
  }
}

@media(max-width:720px) {
  html {
    scroll-padding-top:90px;
  }
  .navigation {
    min-height:76px;
    flex-wrap:wrap;
    gap:0;
  }
  .logo {
    font-size:18px;
  }
  .logo img {
    width:38px;
    height:34px;
  }
  .menu-toggle:not([hidden]) {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:44px;
    height:44px;
    background:none;
    border:0;
    padding:10px;
    color:var(--ink);
    cursor:pointer;
  }
  .menu-toggle span {
    display:block;
    width:24px;
    height:2px;
    background:currentColor;
    transition:transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform:translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform:translateY(-4px) rotate(-45deg);
  }
  .nav-links {
    width:100%;
    justify-content:space-between;
    gap:16px;
    padding:10px 0 20px;
  }
  .nav-links[data-collapsible=true] {
    display:none;
  }
  .nav-links[data-open=true] {
    display:flex;
  }
  .nav-links .nav-contact {
    padding:8px 12px;
    gap:8px;
  }
  .hero-layout {
    grid-template-columns:1fr;
    padding-block:52px 36px;
    gap:40px;
  }
  .hero h1 {
    font-size:clamp(43px,9.5vw,64px);
  }
  .hero-content>p {
    max-width:50ch;
    margin-top:24px;
  }
  .hero-actions {
    margin-top:28px;
  }
  .brand-art {
    aspect-ratio:1.5;
    max-height:350px;
  }
  .brand-art-inner {
    margin:20px 32px 12px;
  }
  .brand-caption {
    padding-block:12px;
    margin-inline:20px;
  }
  .hero-footer {
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
    padding-block:20px;
  }
  .section {
    padding-block:64px;
  }
  .section-intro,.about-layout,.contact-layout {
    grid-template-columns:1fr;
    gap:28px;
  }
  .section-intro {
    margin-bottom:36px;
  }
  .section-intro p {
    font-size:16px;
  }
  .service-row {
    grid-template-columns:1fr;
    gap:12px;
    padding-block:27px;
  }
  .service-row h3 {
    font-size:22px;
  }
  .service-row p {
    font-size:15px;
  }
  .about h2 br:nth-child(2) {
    display:none;
  }
  .about-lead {
    font-size:22px;
  }
  .location {
    margin-top:20px;
  }
  .contact-layout {
    gap:40px;
  }
  .contact-link {
    max-width:420px;
  }
  .email-link {
    font-size:16px;
  }
  .footer-layout {
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }
  .footer-layout .logo img {
    width:32px;
    height:28px;
  }
}

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

