@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --ink: #f1f0eb;
  --muted: #aaa9a2;
  --paper: #0a0a0a;
  --panel: #11110f;
  --line: #2a2a26;
  --signal: #d8ff45;
  --max: 1400px;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
}
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .8rem 1rem;
  color: #0a0a0a;
  background: var(--signal);
}
.skip-link:focus { top: 1rem; }

.site-header,
footer {
  width: min(calc(100% - 4rem), var(--max));
  margin-inline: auto;
}
.site-header {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font: 500 .82rem/1 "Manrope", sans-serif;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-decoration: none;
}
.wordmark span { color: var(--signal); margin: 0 .2rem; }
.site-header nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 3rem); }
.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-header nav a:hover,
.site-header nav a:focus-visible,
footer nav a:hover,
footer nav a:focus-visible { color: var(--ink); }
.site-header .nav-contact { color: var(--signal); }

main > section {
  width: min(calc(100% - 4rem), var(--max));
  margin-inline: auto;
}
.hero {
  min-height: calc(100vh - 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  align-items: stretch;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 7vw 6rem 0;
}
.eyebrow {
  margin: 0 0 2rem;
  color: var(--signal);
  font: 500 .68rem/1.2 "Manrope", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .88;
}
h1 { font-size: clamp(5.2rem, 12vw, 12.5rem); }
.hero-intro {
  max-width: 35rem;
  margin: 3rem 0 2.5rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.4;
}
.text-link {
  width: fit-content;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--ink);
  font-size: .8rem;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { color: var(--signal); margin-left: .5rem; }
.hero-mark {
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 2rem 0 2rem;
  padding: 2rem;
  color: #0a0a0a;
  background: var(--signal);
}
.hero-mark strong {
  align-self: center;
  font: 300 clamp(6rem, 11vw, 11rem)/1 "Manrope", sans-serif;
  letter-spacing: -.09em;
  transform: rotate(-90deg);
}
.hero-mark span {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-mark span:last-child { align-self: flex-end; }

.statement {
  padding: clamp(7rem, 12vw, 13rem) 0;
  border-top: 1px solid var(--line);
}
.statement p {
  max-width: 66rem;
  margin: 0;
  font: 300 clamp(2.2rem, 4.8vw, 5.2rem)/1.08 "Manrope", sans-serif;
  letter-spacing: -.05em;
}
.statement p::first-letter { color: var(--signal); }

.services {
  padding: clamp(6rem, 9vw, 10rem) 0;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
h2 { font-size: clamp(3rem, 6vw, 6.5rem); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.service-grid article {
  min-height: 21rem;
  padding: 2rem 8% 3rem 0;
  border-bottom: 1px solid var(--line);
}
.service-grid article:nth-child(odd) {
  padding-right: 10%;
  border-right: 1px solid var(--line);
}
.service-grid article:nth-child(even) { padding-left: 10%; }
.service-grid article > span {
  color: var(--signal);
  font-size: .7rem;
  letter-spacing: .15em;
}
h3 {
  margin: 5rem 0 1.5rem;
  font: 400 clamp(1.45rem, 2vw, 2rem)/1.2 "Manrope", sans-serif;
  letter-spacing: -.035em;
}
.service-grid p { max-width: 30rem; margin: 0; color: var(--muted); }

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 10vw, 10rem);
  padding: clamp(7rem, 12vw, 13rem) 0;
  border-top: 1px solid var(--line);
}
.approach-copy > p:first-child {
  margin: 0 0 4rem;
  color: var(--muted);
  font-size: 1.25rem;
}
.approach ol { margin: 0; padding: 0; list-style: none; }
.approach li {
  display: grid;
  grid-template-columns: 3rem 8rem 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.approach li span { color: var(--signal); font-size: .7rem; }
.approach li strong { font: 400 1rem "Manrope", sans-serif; }
.approach li small { color: var(--muted); font-size: .88rem; }
.scope-note {
  margin: 4rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--signal);
  color: var(--muted);
  font-size: .82rem;
}

.contact {
  padding: clamp(7rem, 12vw, 12rem) 0;
  border-top: 1px solid var(--line);
}
.contact > p:not(.eyebrow) { max-width: 34rem; margin: 3rem 0; color: var(--muted); font-size: 1.1rem; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 .5rem;
  border-bottom: 1px solid var(--signal);
  color: var(--signal);
  font: 400 clamp(1.1rem, 2.4vw, 2rem) "Manrope", sans-serif;
  letter-spacing: -.03em;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-methods { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; }

.section-heading > *,
.approach > *,
footer > * { min-width: 0; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
}
footer > div p { margin: 1rem 0 0; }
footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
footer > p { margin: 0; white-space: nowrap; }

.legal-page main {
  width: min(calc(100% - 4rem), 880px);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}
.legal-page h1 { font-size: clamp(3.4rem, 8vw, 7rem); }
.legal-page .effective { margin: 2rem 0 5rem; color: var(--muted); }
.legal-page h2 {
  margin: 4rem 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  line-height: 1.15;
}
.legal-page p, .legal-page li { color: #c2c1bb; }
.legal-page li + li { margin-top: .6rem; }
.legal-page .notice {
  margin: 0 0 3rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header,
  footer,
  main > section,
  .legal-page main { width: min(calc(100% - 2rem), var(--max)); }
  .site-header { min-height: 5rem; }
  .site-header nav a:not(.nav-contact) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: calc(100vh - 5rem); padding: 6rem 0 4rem; }
  .hero-mark { min-height: 12rem; margin: 0 0 1rem; flex-direction: row; }
  .hero-mark strong { transform: none; }
  .hero-mark span:last-child { align-self: flex-end; }
  .section-heading, .approach { grid-template-columns: 1fr; }
  .section-heading { gap: 2rem; margin-bottom: 4rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article,
  .service-grid article:nth-child(odd),
  .service-grid article:nth-child(even) { min-height: 18rem; padding: 2rem 0 3rem; border-right: 0; }
  .approach { gap: 4rem; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(3.75rem, 18vw, 5.75rem); }
  .hero-copy { min-height: auto; }
  .hero-mark { align-items: center; }
  .hero-mark strong { font-size: 4.5rem; }
  .approach li { grid-template-columns: 2rem 1fr; }
  .approach li small { grid-column: 2; }
  footer nav { flex-direction: column; gap: .8rem; }
  .contact-methods { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
