@font-face {
  font-family: Manrope;
  src: url(/assets/manrope.woff2) format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --ink: #202125;
  --muted: #626770;
  --line: #e0e1e5;
  --paper: #f9f9fa;
  --accent: #465bf3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
.wrap {
  max-width: 1320px;
  margin: auto;
  width: 88%;
}
.skip {
  position: absolute;
  top: -6rem;
  background: white;
  padding: 1rem;
  z-index: 10;
}
.skip:focus {
  top: 1rem;
}
header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 1.1;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.brand span {
  font-size: 0.8rem;
  letter-spacing: 0;
  font-weight: 450;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  font-size: 0.875rem;
}
nav a:hover,
.email:hover {
  color: var(--accent);
}
.nav-contact {
  border: 1px solid #cdd0d6;
  border-radius: 30px;
  padding: 0.65rem 1.1rem;
}
.nav-contact span {
  margin-left: 0.8rem;
}
.hero {
  text-align: center;
  padding: 6rem 0 5rem;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 550;
  color: var(--muted);
}
h1 {
  font-size: clamp(3rem, 6.6vw, 6rem);
  line-height: 1.09;
  font-weight: 500;
  letter-spacing: -0.065em;
  margin: 1.7rem 0;
}
h1 span {
  color: #868993;
}
.hero p {
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.7;
  margin: 1.5rem auto 2rem;
  max-width: 650px;
}
.button {
  display: inline-flex;
  gap: 1.7rem;
  align-items: center;
  background: var(--ink);
  color: #fff;
  padding: 0.95rem 1.5rem;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.button span {
  font-size: 1.15rem;
}
.hero-note {
  font-size: 0.75rem;
  margin-top: 1.2rem;
  color: #626770;
}
.art-panel {
  height: 480px;
  border-radius: 16px;
  background: #26272b;
  position: relative;
  overflow: hidden;
}
.art-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-caption {
  position: absolute;
  z-index: 1;
  left: 5%;
  bottom: 11%;
  color: #fff;
  text-shadow: 0 1px 8px #0005;
}
.art-caption span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.art-caption p {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 1rem 0 0;
}
.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.section-heading {
  max-width: 740px;
}
h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.15;
  margin: 1.4rem 0;
}
.section-heading > p {
  color: var(--muted);
  max-width: 580px;
  font-size: 1.05rem;
}
.service-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.service-grid article {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.number {
  font-size: 0.75rem;
  color: #626770;
  letter-spacing: 0.06em;
}
h3 {
  font-size: 1.2rem;
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin: 1.2rem 0 0.8rem;
}
article p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
  margin: 0;
}
.process-section {
  background: #eff0f3;
}
.steps {
  gap: 4rem;
}
.steps .number {
  color: #626770;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--muted);
  font-size: 1.2rem;
  top: -0.15rem;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0 0.2rem;
}
.contact {
  text-align: center;
  padding: 5rem 0 7rem;
  border-top: 1px solid var(--line);
}
.contact h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.07;
  margin: 2rem 0;
}
.contact .email {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.4rem;
}
footer {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
}
footer .brand {
  font-size: 1.6rem;
  color: var(--ink);
}
@media (min-width: 1550px) {
  .hero {
    padding-top: 7rem;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: 88%;
  }
  header {
    height: 88px;
  }
  nav {
    gap: 1rem;
  }
  nav > a:not(.nav-contact) {
    display: none;
  }
  .brand {
    font-size: 1.8rem;
  }
  .hero {
    padding: 3.5rem 0;
  }
  h1 {
    font-size: clamp(2.7rem, 9vw, 4.5rem);
  }
  .hero p {
    font-size: 1rem;
  }
  .desktop {
    display: none;
  }
  .hero-note {
    font-size: 0.7rem;
  }
  .art-panel {
    height: 330px;
    border-radius: 10px;
  }
  .art-panel img {
    object-position: 60% center;
  }
  .art-caption {
    bottom: 10%;
    left: 7%;
  }
  .art-caption p {
    font-size: 2.2rem;
  }
  .art-caption span {
    font-size: 0.6rem;
  }
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  .service-grid article {
    padding-top: 1rem;
  }
  article p {
    max-width: none;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact {
    padding: 4rem 0;
  }
  footer {
    flex-wrap: wrap;
    gap: 1rem;
  }
  footer .brand {
    width: 100%;
  }
  footer p {
    margin: 0;
  }
  h2 {
    font-size: 2.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
/* Motion is progressive enhancement; all content works without JavaScript. */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 30;
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 5.1rem);
  letter-spacing: -0.06em;
}
.hero p {
  max-width: 600px;
}
.art-panel img {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.section-heading,
.service-grid article,
.steps article,
.faq,
.contact {
  transition:
    opacity 0.65s ease,
    translate 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-wait {
  opacity: 0;
  translate: 0 22px;
}
.service-grid article {
  position: relative;
  transition:
    opacity 0.65s,
    translate 0.65s,
    background 0.25s;
  border-radius: 3px;
}
.service-grid article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-grid article:hover::before,
.service-grid article:focus-within::before {
  transform: scaleX(1);
}
.button span,
.nav-contact span {
  display: inline-block;
  transition: transform 0.2s;
}
.button:hover span,
.button:focus-visible span,
.nav-contact:hover span {
  transform: translate(3px, -3px);
}
nav > a:not(.nav-contact) {
  position: relative;
}
nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
nav > a:hover::after,
nav > a:focus-visible::after {
  transform: scaleX(1);
}
details[open] p {
  animation: answer-in 0.25s ease both;
}
@keyframes answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-wait {
    opacity: 1;
    translate: none;
  }
  .art-panel img,
  .section-heading,
  .service-grid article,
  .steps article,
  .faq,
  .contact,
  .button span,
  .nav-contact span,
  nav > a::after,
  .service-grid article::before {
    transition: none;
  }
  details[open] p {
    animation: none;
  }
  .reading-progress {
    display: none;
  }
}

/* Readability corrections from the browser accessibility audit. */
.hero-note {font-size: .8125rem;}
article p {font-size: 1rem;}
.number {font-size: .875rem;}
