:root {
  --ink: #111713;
  --ink-soft: #19211b;
  --paper: #e8e8df;
  --paper-soft: #d9dbd1;
  --muted: #9ca398;
  --line: rgba(232, 232, 223, 0.14);
  --dark-line: rgba(17, 23, 19, 0.16);
  --accent: #c7a46a;
  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  background: var(--paper);
  color: var(--ink);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid rgba(232, 232, 223, 0.18);
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  line-height: 1;
}

.wordmark-dot,
.accent {
  color: var(--accent);
}

.site-nav {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: 0.68rem;
  gap: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(232, 232, 223, 0.7);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.site-nav .nav-contact {
  color: var(--paper);
}

.nav-toggle {
  background: none;
  border: 0;
  display: none;
}

.hero {
  height: min(900px, 100svh);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 54% center;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 9, 0.66) 0%, rgba(8, 12, 9, 0.18) 60%, rgba(8, 12, 9, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 12, 9, 0.76) 0%, transparent 54%, rgba(8, 12, 9, 0.4) 100%);
  inset: 0;
  position: absolute;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  left: clamp(1.25rem, 4vw, 4rem);
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
  top: 116px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-meta {
  color: rgba(232, 232, 223, 0.58);
}

.hero-content {
  bottom: 5.75rem;
  left: clamp(1.25rem, 4vw, 4rem);
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
}

.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(3.35rem, 7.4vw, 7.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 1.35rem 0 2.5rem;
  max-width: 1000px;
}

.hero-bottom {
  align-items: flex-end;
  border-top: 1px solid rgba(232, 232, 223, 0.25);
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.hero-bottom p {
  color: rgba(232, 232, 223, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.68rem;
  gap: 1.8rem;
  justify-content: space-between;
  letter-spacing: 0.12em;
  min-width: 245px;
  padding: 1.1rem 1.2rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button-light {
  border: 1px solid rgba(232, 232, 223, 0.72);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.scroll-cue {
  align-items: center;
  bottom: 1.75rem;
  color: rgba(232, 232, 223, 0.55);
  display: flex;
  gap: 0.8rem;
  left: clamp(1.25rem, 4vw, 4rem);
  position: absolute;
}

.scroll-line {
  background: rgba(232, 232, 223, 0.35);
  height: 1px;
  width: 42px;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4rem);
}

.section-label {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(40px, 0.2fr) 0.8fr;
}

.section-label span:first-child,
.principle-number,
.service-index,
.process-steps > li > span {
  color: var(--accent);
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.intro-copy {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  margin: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 9rem) calc(20% + 0.8rem);
}

.intro h2,
.services h2,
.process h2,
.contact h2 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.intro-detail {
  align-self: end;
}

.intro-detail p {
  font-size: 0.9rem;
  line-height: 1.75;
}

.intro-detail .large-copy {
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.principles {
  border-top: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: calc(20% + 0.8rem);
}

.principles article {
  min-height: 260px;
  padding: 1.5rem 2rem 0 0;
}

.principles article + article {
  border-left: 1px solid var(--dark-line);
  padding-left: 2rem;
}

.principle-number,
.service-index,
.process-steps > li > span {
  font-family: var(--mono);
  font-size: 0.7rem;
}

.principles h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 4.5rem 0 0.9rem;
}

.principles p {
  color: rgba(17, 23, 19, 0.66);
  font-size: 0.86rem;
  line-height: 1.65;
  max-width: 270px;
}

.experience {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
}

.experience-image {
  align-items: center;
  background: #0c110e;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.experience-image::before {
  display: none;
}

.portrait-frame {
  height: 100%;
  position: relative;
  width: 100%;
}

.portrait-frame::before,
.portrait-frame::after {
  display: none;
}

.portrait-frame img {
  filter: saturate(0.78) contrast(0.98);
  height: 100%;
  object-fit: cover;
  object-position: 52% 43%;
  position: relative;
  width: 100%;
}

.experience-panel {
  align-items: flex-start;
  background: var(--ink-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.experience-number {
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.9;
  margin: 2rem 0 1.25rem -0.35rem;
}

.experience-caption {
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 300px;
}

.experience-list {
  border-top: 1px solid var(--line);
  display: grid;
  font-family: var(--mono);
  font-size: 0.65rem;
  gap: 0.9rem;
  letter-spacing: 0.09em;
  margin-top: 3rem;
  padding-top: 1.4rem;
  text-transform: uppercase;
  width: 100%;
}

.experience-list span {
  color: var(--muted);
}

.services {
  background: var(--ink);
}

.services-heading {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.3fr 0.7fr;
  margin: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 8vw, 7rem) calc(20% + 0.8rem);
}

.services-heading p,
.process-heading > p {
  align-self: end;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 400px;
}

.service-list {
  margin-left: calc(20% + 0.8rem);
}

.service-item {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 65px 1fr minmax(260px, 0.6fr) 36px;
  min-height: 150px;
  padding: 1.4rem 0;
}

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

.service-item h3 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.service-item p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 410px;
}

.service-mark {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 200;
  justify-self: end;
}

.process {
  background: #d4d1c6;
  color: var(--ink);
}

.process-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 0.8fr;
  margin: clamp(4rem, 8vw, 8rem) 0 0 calc(20% + 0.8rem);
}

.process-heading > p {
  color: rgba(17, 23, 19, 0.64);
  margin-top: 2.3rem;
}

.process-steps {
  list-style: none;
}

.process-steps li {
  border-top: 1px solid var(--dark-line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 42px 1fr;
  padding: 1.8rem 0 2.4rem;
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.process-steps h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
}

.process-steps p {
  color: rgba(17, 23, 19, 0.62);
  font-size: 0.83rem;
  line-height: 1.6;
}

.contact {
  background: var(--ink-soft);
  padding-bottom: 4rem;
  padding-top: clamp(7rem, 12vw, 12rem);
}

.contact h2 {
  font-size: clamp(3.5rem, 8vw, 9rem);
  margin: 1.5rem 0 clamp(4rem, 8vw, 8rem);
}

.contact-link {
  align-items: center;
  border-bottom: 1px solid rgba(232, 232, 223, 0.38);
  display: flex;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  justify-content: space-between;
  padding: 1.2rem 0;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-meta {
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.site-footer {
  align-items: flex-end;
  background: var(--ink);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  font-family: var(--mono);
  font-size: 0.65rem;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr auto;
  letter-spacing: 0.09em;
  padding: 3rem clamp(1.25rem, 4vw, 4rem);
  text-transform: uppercase;
}

.site-footer .wordmark {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.35rem;
}

.site-footer p {
  line-height: 1.7;
}

.site-footer a:not(.wordmark):hover,
.site-footer a:not(.wordmark):focus-visible {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }

  .nav-toggle {
    align-items: center;
    display: flex;
    font-family: var(--mono);
    font-size: 0.65rem;
    gap: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
  }

  .nav-toggle-lines {
    display: grid;
    gap: 5px;
    width: 20px;
  }

  .nav-toggle-lines i {
    background: currentColor;
    display: block;
    height: 1px;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    align-items: flex-start;
    background: var(--ink-soft);
    flex-direction: column;
    font-family: var(--sans);
    font-size: clamp(2rem, 9vw, 4rem);
    inset: 0;
    justify-content: center;
    letter-spacing: -0.04em;
    opacity: 0;
    padding: 5rem 1.5rem;
    pointer-events: none;
    position: fixed;
    text-transform: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-contact {
    color: var(--paper);
  }

  .hero {
    min-height: 680px;
  }

  .hero-meta {
    top: 100px;
  }

  .hero-content {
    bottom: 4rem;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem;
  }

  .scroll-cue {
    display: none;
  }

  .intro-copy,
  .services-heading,
  .process-grid {
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .principles,
  .service-list {
    margin-left: 0;
  }

  .experience {
    grid-template-columns: 1fr;
  }

  .experience-image {
    min-height: 420px;
  }

  .portrait-frame {
    height: 420px;
    width: 100%;
  }

  .experience-panel {
    min-height: 460px;
  }

  .service-item {
    grid-template-columns: 50px 1fr 30px;
  }

  .service-item p {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  .hero {
    height: 100svh;
    min-height: 660px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-meta span:last-child,
  .hero-bottom p {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 15.2vw, 5rem);
    line-height: 0.92;
    margin-top: 1rem;
  }

  .button {
    width: 100%;
  }

  .section-label {
    grid-template-columns: 42px 1fr;
  }

  .intro-copy,
  .services-heading,
  .process-grid {
    margin-top: 3.5rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: auto;
    padding: 1.5rem 0 2.5rem;
  }

  .principles article + article {
    border-left: 0;
    border-top: 1px solid var(--dark-line);
    padding-left: 0;
  }

  .principles h3 {
    margin-top: 2.5rem;
  }

  .experience-image {
    min-height: 390px;
  }

  .portrait-frame {
    height: 390px;
    width: 100%;
  }

  .experience-panel {
    min-height: 440px;
  }

  .service-item {
    grid-template-columns: 42px 1fr 24px;
    padding: 1.8rem 0;
  }

  .service-item p {
    grid-column: 2 / -1;
  }

  .contact-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}
