
:root {
  --ink: #090909;
  --paper: #f5f3ed;
  --white: #ffffff;
  --blue: #1557ff;
  --acid: #c6ff19;
  --line: rgba(9, 9, 9, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.wordmark span {
  margin-left: 3px;
  font-size: 0.45em;
  letter-spacing: 0;
}

.nav-inner nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-inner nav a:not(.nav-contact) {
  transition: opacity 180ms ease;
}

.nav-inner nav a:not(.nav-contact):hover {
  opacity: 0.62;
}

.nav-contact {
  padding: 11px 17px;
  border: 1px solid currentColor;
  transition: background 180ms ease, color 180ms ease;
}

.nav-contact:hover {
  background: var(--white);
  color: var(--ink);
}

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 92px 92px;
}

.hero-inner {
  min-height: 780px;
  position: relative;
  padding-top: 132px;
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero h1 {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(4.6rem, 9.5vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.hero-mark {
  flex: 0 0 auto;
  width: 126px;
  height: 126px;
  margin-left: 24px;
  display: grid;
  place-content: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.25em;
  transform: rotate(9deg);
}

.hero-mark span {
  color: var(--acid);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 30px;
}

.hero-bottom p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.1rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}

.primary-button {
  min-width: 190px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 17px 19px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.services-section {
  padding: 130px 0 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 90px;
}

.eyebrow {
  margin: 0;
  padding-top: 8px;
  color: var(--blue);
  font-size: 0.73rem;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-heading h2,
.process-title h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.section-intro {
  margin: 4px 0 0;
  max-width: 430px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 0.25fr 0.28fr 1.2fr 0.9fr;
  gap: 24px;
  align-items: start;
  padding: 35px 0 38px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, padding 160ms ease;
}

.service-row:hover {
  background: var(--white);
  padding-left: 18px;
  padding-right: 18px;
}

.service-number {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--blue);
}

.service-icon {
  color: var(--blue);
}

.service-copy h3 {
  margin: -5px 0 13px;
  font-size: clamp(1.6rem, 2.6vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-copy p {
  max-width: 580px;
  margin: 0;
  color: #454545;
  line-height: 1.55;
}

.service-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #3e3e3e;
  font-size: 0.9rem;
  line-height: 1.85;
}

.service-row li::before {
  content: "— ";
  color: var(--blue);
}

.studio-strip {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 21px 30px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.strip-track i {
  color: var(--blue);
  font-style: normal;
}

.process-section {
  padding: 130px 0;
  background: var(--ink);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.eyebrow.light {
  color: var(--acid);
  margin-bottom: 28px;
}

.steps {
  border-top: 1px solid rgba(255,255,255,.7);
}

.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 28px 0 31px;
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.step > span {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.step h3 {
  margin: -3px 0 8px;
  font-size: 1.4rem;
}

.step p {
  max-width: 530px;
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
}

.contact-section {
  padding: 130px 0;
  background: var(--white);
}

.contact-inner > .eyebrow {
  margin-bottom: 30px;
}

.contact-inner h2 {
  color: var(--blue);
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 0.78;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  align-items: end;
  gap: 8vw;
  margin-top: 90px;
}

.contact-bottom > p {
  margin: 0;
  max-width: 480px;
  color: #454545;
  line-height: 1.65;
}

.email-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-block: 1px solid var(--ink);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color 180ms ease, padding 180ms ease;
}

.email-link:hover {
  color: var(--blue);
  padding-left: 14px;
  padding-right: 14px;
}

.site-footer {
  padding: 70px 0 30px;
  background: var(--blue);
  color: var(--white);
}

.footer-top {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-mark {
  font-size: clamp(4rem, 9vw, 9rem);
}

.footer-top p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: right;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.32);
  font-size: 0.78rem;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.footer-bottom > a {
  text-align: right;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.legal-page .site-header {
  position: relative;
  background: var(--blue);
}

.legal-hero {
  padding: 95px 0 75px;
  background: var(--blue);
  color: var(--white);
}

.legal-hero .eyebrow {
  color: var(--acid);
  margin-bottom: 28px;
}

.legal-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3.7rem, 8vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.legal-date {
  margin: 38px 0 0;
  font-size: 0.82rem;
  opacity: 0.72;
}

.legal-content {
  max-width: 850px;
  padding-top: 85px;
  padding-bottom: 110px;
}

.legal-content > p:first-child {
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #2c2c2c;
}

.legal-content h2 {
  margin: 45px 0 11px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-content p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.75;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .page-shell { width: min(100% - 32px, 1420px); }
  .hero, .hero-inner { min-height: 700px; }
  .hero-title-wrap { padding: 60px 0 45px; }
  .hero-mark { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 58px; }
  .section-intro { margin-top: 8px; }
  .service-row { grid-template-columns: 50px 46px 1fr; }
  .service-row ul { grid-column: 3; margin-top: 6px; }
  .process-grid { grid-template-columns: 1fr; gap: 70px; }
  .contact-bottom { grid-template-columns: 1fr; gap: 44px; margin-top: 65px; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom > a { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 28px, 1420px); }
  .nav-inner { height: 72px; }
  .nav-inner nav { gap: 16px; font-size: 0.8rem; }
  .nav-inner nav a:not(.nav-contact) { display: none; }
  .nav-contact { padding: 9px 13px; }
  .hero, .hero-inner { min-height: 690px; }
  .hero-inner { padding-top: 108px; padding-bottom: 30px; }
  .hero-meta { flex-direction: column; gap: 8px; }
  .hero-title-wrap { padding: 70px 0 50px; }
  .hero h1 { font-size: clamp(3.65rem, 17.5vw, 5.5rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
  .primary-button { width: 100%; }
  .services-section, .process-section, .contact-section { padding: 88px 0; }
  .service-row { grid-template-columns: 38px 1fr; gap: 18px; padding: 28px 0 30px; }
  .service-icon { display: none; }
  .service-copy { grid-column: 2; }
  .service-row ul { grid-column: 2; }
  .service-row:hover { padding-left: 10px; padding-right: 10px; }
  .step { grid-template-columns: 46px 1fr; }
  .contact-inner h2 { font-size: clamp(4rem, 22vw, 7rem); }
  .email-link { font-size: 1rem; gap: 11px; }
  .footer-top { min-height: 145px; display: block; }
  .footer-top p { margin-top: 28px; text-align: left; }
  .footer-bottom { grid-template-columns: 1fr; gap: 18px; }
  .legal-links { flex-wrap: wrap; gap: 16px; }
  .legal-hero { padding: 70px 0 55px; }
  .legal-content { padding-top: 65px; padding-bottom: 80px; }
}

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