﻿:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --ink: #f2f0ea;
  --muted: #8b8b86;
  --line: #252525;
  --max: 1440px;
  --page-pad: clamp(20px, 2.65vw, 64px);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}
.skip-link {
  position: absolute;
  left: var(--page-pad);
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  background: var(--bg);
  position: relative;
  z-index: 5;
}
body.home .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,0));
}
.nav {
  max-width: none;
  margin: 0 auto;
  padding: clamp(24px, 2vw, 34px) var(--page-pad) clamp(22px, 1.8vw, 30px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 72px);
}
.brand img {
  width: clamp(292px, 22vw, 390px);
  height: auto;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 48px);
  padding-top: clamp(8px, .7vw, 13px);
  color: var(--muted);
  font-size: clamp(13px, .9vw, 16px);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}
body.home .nav-links {
  color: #fff;
}
body.home .nav-links a:hover,
body.home .nav-links a[aria-current="page"] {
  color: #fff;
}
.home-visual {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  min-height: 100svh;
  position: relative;
  background: #050505;
}
.home-visual img {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  object-fit: cover;
  transform-origin: center center;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.home-visual::before,
.home-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
}
.home-visual::before {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.36), transparent 28%, rgba(0,0,0,.28)),
    radial-gradient(ellipse at 50% 52%, transparent 42%, rgba(0,0,0,.22) 100%);
  opacity: .84;
}
.home-visual::after {
  background:
    radial-gradient(ellipse at 42% 50%, rgba(255,255,255,.10), transparent 23%),
    linear-gradient(105deg, transparent 0%, rgba(135,170,255,.08) 34%, transparent 58%);
  mix-blend-mode: screen;
  opacity: .22;
  animation: cinematicBreath 7s ease-in-out infinite alternate;
}
.home-faq {
  max-width: none;
  margin: 0 auto;
  padding: clamp(58px, 5.2vw, 76px) var(--page-pad) clamp(58px, 5vw, 72px);
  background: var(--bg);
}
.home-faq-inner {
  width: min(100%, 1380px);
  margin: 0 auto;
}
.home-faq-label {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 82px);
  line-height: .92;
  font-weight: 320;
  letter-spacing: 0;
}
.home-faq-list {
  border-top: 1px solid var(--line);
}
.home-faq-item {
  border-bottom: 1px solid var(--line);
}
.home-faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(52px, 80px) 1fr 36px;
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}
.home-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-faq-item .num {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: .14em;
}
.home-faq-item h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.08;
  font-weight: 330;
}
.home-faq-toggle {
  justify-self: end;
  width: 30px;
  height: 30px;
  position: relative;
}
.home-faq-toggle::before,
.home-faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .22s ease, opacity .22s ease;
}
.home-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.home-faq-item[open] .home-faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.home-faq-answer {
  max-width: min(820px, calc(100% - 112px));
  margin: -8px 0 34px min(112px, 8vw);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.page-head {
  max-width: none;
  margin: 0 auto;
  padding: clamp(58px, 5.2vw, 76px) var(--page-pad) clamp(34px, 3vw, 46px);
}
.page-head h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1;
  font-weight: 320;
  letter-spacing: 0;
}
.page-head p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.work-shell {
  max-width: none;
  margin: 0 auto;
  padding: 18px var(--page-pad) clamp(72px, 6.4vw, 92px);
}
.image-wall {
  columns: 3 300px;
  column-gap: clamp(14px, 1.25vw, 20px);
}
.image-wall button {
  appearance: none;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  cursor: pointer;
  background: var(--panel);
  opacity: 0;
  transform: translateY(18px);
  animation: revealImage .72s ease forwards;
}
.image-wall button:nth-child(3n + 2) { animation-delay: .08s; }
.image-wall button:nth-child(3n) { animation-delay: .16s; }
.image-wall button:nth-child(4n) { animation-delay: .24s; }
.image-wall img {
  width: 100%;
  height: auto;
  opacity: .94;
  transition: opacity .35s ease, transform .45s ease, filter .45s ease;
}
.image-wall button:hover img {
  opacity: 1;
  transform: scale(1.018);
  filter: brightness(1.05);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .94);
  opacity: 0;
  transition: opacity .28s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: calc(100vw - clamp(44px, 7vw, 112px));
  max-height: calc(100svh - clamp(92px, 7vw, 120px));
  object-fit: contain;
  animation: lightboxImageIn .32s ease;
}
.lightbox button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 30px;
  font-size: 42px;
  font-weight: 200;
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  font-weight: 160;
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.text-block {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 30px var(--page-pad) 96px;
}
.workflow-page {
  max-width: none;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 106px) var(--page-pad) clamp(76px, 7.8vw, 120px);
  font-family: Georgia, "Times New Roman", serif;
}
.workflow-intro {
  display: block;
  width: min(100%, 1220px);
  margin: 0 auto clamp(70px, 9vw, 148px);
  text-align: center;
}
.workflow-intro-block + .workflow-intro-block {
  margin-top: clamp(62px, 8vw, 136px);
}
.workflow-intro h2 {
  margin: 0 0 clamp(36px, 5vw, 86px);
  color: var(--ink);
  font-size: clamp(30px, 2.16vw, 45px);
  line-height: 1;
  font-weight: 700;
}
.workflow-intro p,
.workflow-intro li {
  color: var(--ink);
  font-size: clamp(14px, .94vw, 19px);
  line-height: 1.78;
  font-weight: 700;
}
.workflow-intro ul {
  margin: clamp(34px, 4vw, 58px) 0 0;
  padding-left: 0;
  list-style: none;
}
.workflow-intro li {
  margin-bottom: 18px;
}
.workflow-example-title {
  margin: 0 auto clamp(36px, 4.6vw, 70px);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 3.52vw, 61px);
  line-height: 1.1;
  font-weight: 360;
  text-align: center;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.2vw, 48px);
  max-width: none;
  margin: 0 auto;
}
.workflow-step {
  padding: 0;
}
.workflow-step figure {
  margin: 0 0 clamp(30px, 3.2vw, 48px);
  overflow: hidden;
  background: var(--panel);
}
.workflow-step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.workflow-step-copy {
  max-width: none;
}
.workflow-step h2 {
  margin: 0 0 clamp(24px, 3vw, 46px);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(22px, 1.28vw, 27px);
  line-height: 1.2;
  font-weight: 650;
  text-align: center;
}
.workflow-step p {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(14px, .8vw, 18px);
  line-height: 1.78;
  font-weight: 700;
}
.workflow-step .days {
  margin-top: clamp(30px, 3.3vw, 50px);
  color: var(--ink);
}
.workflow-step .num {
  display: none;
}
.workflow-spacer {
  height: clamp(40px, 5vw, 70px);
}
.workflow-list,
.faq-list {
  border-top: 1px solid var(--line);
}
.workflow-item,
.faq-item {
  display: grid;
  grid-template-columns: minmax(92px, 132px) 1fr;
  gap: clamp(28px, 3.4vw, 54px);
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.num,
.section-label {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-label {
  margin: 0 0 18px;
}
.workflow-item h2,
.faq-item h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 330;
}
.workflow-item p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}
.section-gap {
  padding-top: 22px;
}
.about-page {
  max-width: none;
  margin: 0 auto;
  padding: clamp(10px, 1.2vw, 22px) var(--page-pad) clamp(58px, 5vw, 84px);
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 6.2vw, 132px);
  align-items: center;
  width: min(100%, 1740px);
  min-height: calc(100svh - clamp(128px, 9vw, 178px));
  margin: 0 auto;
}
.about-media {
  margin: 0;
  background: var(--panel);
  overflow: hidden;
  justify-self: end;
  width: min(100%, clamp(280px, 27vw, 520px));
}
.about-media img {
  width: 100%;
  height: auto;
  max-height: min(76svh, 760px);
  object-fit: cover;
  filter: contrast(1.05);
}
.about-kicker {
  margin: 0 0 clamp(54px, 8vh, 150px);
  color: var(--ink);
  font-size: clamp(32px, 2.25vw, 44px);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}
.about-lede {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(20px, 1.18vw, 24px);
  line-height: 1.42;
  font-weight: 420;
}
.about-body {
  max-width: min(100%, 1040px);
}
.about-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(17px, 1vw, 21px);
  line-height: 1.58;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4.6vw, 96px);
  margin-top: 36px;
  padding-top: 0;
  border-top: 0;
}
.about-fact h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(28px, 1.75vw, 36px);
  line-height: 1.1;
  font-weight: 360;
}
.about-fact p,
.about-fact li {
  color: var(--muted);
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.48;
}
.about-fact p {
  margin: 0;
}
.about-fact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-fact li {
  margin-bottom: 7px;
}
.about-service-note {
  margin-top: 9px;
}
.site-footer {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  margin: 0 auto;
  padding: 42px 0 52px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.social-icons a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  background: #1055e1;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  transition: transform .2s ease;
}
.social-icons a:hover {
  transform: translateY(-1px);
}
.social-icons a.social-instagram {
  background: transparent;
}
.social-icons img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.footer-email {
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 650;
  letter-spacing: .01em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  line-height: 1;
}
.footer-email:hover {
  color: var(--ink);
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.2%, -0.6%); }
}
@keyframes cinematicBreath {
  from { opacity: .14; filter: blur(1px); }
  to { opacity: .30; filter: blur(4px); }
}
@keyframes revealImage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lightboxImageIn {
  from {
    opacity: .35;
    transform: scale(.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-visual img,
  .image-wall button,
  .lightbox img,
  .home-visual::before,
  .home-visual::after {
    animation: none;
  }
  .image-wall button {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1920px) {
  :root {
    --page-pad: 64px;
  }
  .about-hero {
    grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  }
}
@media (max-width: 1599px) {
  .about-hero {
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: clamp(44px, 5vw, 80px);
  }
  .about-media {
    width: min(100%, clamp(260px, 25vw, 380px));
  }
  .about-kicker {
    margin-bottom: clamp(38px, 6vh, 82px);
  }
  .workflow-steps {
    gap: 30px;
  }
}
@media (max-width: 1279px) {
  .nav {
    align-items: center;
  }
  .about-hero {
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
    min-height: auto;
    padding-block: 34px;
  }
  .about-media {
    align-self: center;
    width: min(100%, 330px);
  }
  .about-media img {
    max-height: 540px;
  }
  .about-facts,
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .workflow-step {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 4vw, 46px);
    align-items: start;
  }
  .workflow-step figure {
    margin: 0;
  }
  .workflow-step h2 {
    text-align: left;
  }
}
@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
  .about-hero,
  .workflow-step {
    grid-template-columns: 1fr;
  }
  .about-hero {
    gap: 38px;
  }
  .about-media {
    justify-self: start;
    width: min(100%, 360px);
  }
}
@media (max-width: 767px) {
  .nav {
    padding: 26px 20px 22px;
    flex-direction: column;
    gap: 22px;
  }
  .brand img {
    width: min(292px, 86vw);
  }
  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
  }
  .home-visual,
  .home-faq,
  .about-page,
  .page-head,
  .work-shell,
  .text-block,
  .workflow-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-visual img {
    height: 100svh;
    min-height: 100svh;
  }
  .home-faq {
    padding-top: 76px;
    padding-bottom: 58px;
  }
  .home-faq-label {
    margin-bottom: 34px;
  }
  .home-faq-item summary {
    grid-template-columns: 1fr 28px;
    gap: 18px;
    padding: 24px 0;
  }
  .home-faq-item .num {
    display: none;
  }
  .home-faq-item h2 {
    font-size: 25px;
  }
  .home-faq-answer {
    margin: -4px 0 28px;
    font-size: 17px;
  }
  .about-page {
    padding-top: 44px;
    padding-bottom: 72px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
  }
  .about-media img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .about-facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-intro,
  .workflow-steps {
    gap: 30px;
  }
  .workflow-intro {
    margin-bottom: 70px;
  }
  .workflow-page {
    padding-top: 58px;
  }
  .workflow-intro h2 {
    margin-bottom: 36px;
  }
  .workflow-intro-block + .workflow-intro-block {
    margin-top: 62px;
  }
  .workflow-example-title {
    margin-bottom: 36px;
  }
  .workflow-item,
  .faq-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .image-wall {
    columns: 1;
    column-gap: 0;
  }
  .image-wall button {
    margin-bottom: 18px;
  }
  .lightbox img {
    max-width: calc(100vw - 44px);
    max-height: calc(100vh - 112px);
  }
  .lightbox-prev,
  .lightbox-next {
    font-size: 44px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close {
    top: 18px;
    right: 20px;
    font-size: 36px;
  }
  .site-footer {
    margin: 0 20px;
    padding-left: 0;
    padding-right: 0;
  }
}
