:root {
  --ink: #090909;
  --ink-soft: #151413;
  --bone: #eee9df;
  --paper: #f7f3eb;
  --white: #fffdf8;
  --muted: #5b554d;
  --line: rgba(26, 24, 21, 0.22);
  --line-light: rgba(255, 253, 248, 0.24);
  --gold: #a68b5c;
  --gold-soft: #c5b18e;
  --serif: Didot, "Bodoni 72", "Bodoni 72 Display", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 6px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 14px clamp(20px, 4vw, 62px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.monogram {
  position: relative;
  display: block;
  width: 48px;
  height: 42px;
  font-family: var(--serif);
  line-height: 1;
  opacity: 0.94;
}

.monogram span {
  position: absolute;
  display: block;
}

.monogram__h,
.monogram__c {
  font-size: 1.72rem;
  line-height: 1;
}

.monogram__h {
  top: 1px;
  left: 16px;
  transform: scaleX(0.92);
}

.monogram__c {
  top: 16px;
}

.monogram__c--left {
  left: 8px;
}

.monogram__c--right {
  left: 23px;
}

.house-name,
nav,
.section-label,
.eyebrow,
.text-link {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
}

nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

nav a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.nav-cta {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.hero h1,
.hero__aside span,
.house-section h2,
.section-copy > p:not(.section-label),
.word-list p,
.engagement-list h3,
.inquiry h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before,
.inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.055), transparent 28rem),
    repeating-linear-gradient(118deg, transparent 0 3px, rgba(255, 255, 255, 0.012) 3px 4px);
  pointer-events: none;
}

.section-number {
  position: absolute;
  right: 34%;
  bottom: -0.12em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: clamp(16rem, 37vw, 40rem);
  line-height: 0.75;
}

.hero__copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  padding: 142px clamp(24px, 7vw, 108px) 80px;
}

.eyebrow,
.section-label {
  color: var(--gold-soft);
}

.eyebrow {
  margin-bottom: clamp(30px, 5vw, 64px);
}

.hero h1 {
  width: 100%;
  max-width: 1180px;
  font-size: clamp(4.5rem, 10vw, 11.4rem);
  line-height: 0.82;
  letter-spacing: -0.048em;
  text-transform: none;
}

.hero h1 span {
  display: block;
}

.hero-title__desktop {
  display: grid !important;
  gap: 0.16em;
}

.hero-title__desktop-line {
  display: flex !important;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.18em;
}

.hero-title__mobile {
  display: none !important;
}

.accent-font {
  font-family: Zapfino, "Savoye LET", "Snell Roundhand", "Apple Chancery", cursive;
  font-size: 0.62em;
  font-weight: 400;
  letter-spacing: -0.08em;
  text-transform: none;
}

.accent-font--hero {
  font-size: 0.78em;
  letter-spacing: -0.04em;
}

@media (min-width: 901px) {
  .accent-font--hero {
    font-size: 0.72em;
  }
}

.hero__lede {
  max-width: 710px;
  margin-top: 38px;
  color: rgba(255, 253, 248, 0.74);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.05vw, 2.1rem);
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 46px;
  color: var(--gold-soft);
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--white);
}

.hero__aside {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 124px clamp(26px, 4vw, 62px) 62px;
  background: var(--bone);
  color: var(--ink);
  border-left: 1px solid var(--gold);
}

.hero__aside > p,
.hero__aside small {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__aside > div {
  display: grid;
  gap: 10px;
  margin: 34px 0 42px;
}

.hero__aside span {
  font-size: clamp(2.7rem, 4.7vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero__aside small {
  color: #77684f;
}

.house-section,
.inquiry {
  position: relative;
  padding: clamp(88px, 12vw, 170px) clamp(22px, 6vw, 92px);
}

.section-index {
  position: absolute;
  top: clamp(28px, 4vw, 54px);
  right: clamp(22px, 6vw, 92px);
  color: rgba(26, 24, 21, 0.13);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.8;
  pointer-events: none;
}

.house-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: end;
  min-height: 92svh;
  border-top: 1px solid var(--line);
  background: var(--bone);
}

.house-section--dark {
  background: var(--ink-soft);
  color: var(--white);
}

.house-section--dark .section-index {
  color: rgba(255, 253, 248, 0.06);
}

.section-copy h2 {
  margin-top: 28px;
  font-size: clamp(4rem, 7.5vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

.section-copy > p:not(.section-label) {
  max-width: 780px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.24;
}

.section-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.house-section--dark .section-copy > p:not(.section-label) {
  color: rgba(255, 253, 248, 0.76);
}

.editorial-image {
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(20, 18, 15, 0.16);
}

.editorial-image img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.role .editorial-image,
.engagements .editorial-image {
  grid-column: 1 / -1;
}

.work .editorial-image {
  grid-column: 1 / -1;
  align-self: stretch;
}

.word-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(26px, 4vw, 54px);
  border-top: 1px solid rgba(255, 253, 248, 0.46);
}

.word-list p {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  color: var(--white);
  font-size: clamp(1.75rem, 3.2vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.word-list p:not(:nth-child(3n)) {
  border-right: 1px solid rgba(255, 253, 248, 0.2);
}

.word-list p:nth-child(3n + 2),
.word-list p:nth-child(3n + 3) {
  padding-left: 22px;
}

.engagement-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(22px, 4vw, 48px);
  border-top: 1px solid var(--ink);
}

.engagement-list article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.engagement-list article:first-child {
  border-right: 1px solid var(--line);
}

.engagement-list article + article {
  padding-left: 28px;
}

.engagement-list p {
  color: #77684f;
  font-size: clamp(0.58rem, 0.82vw, 0.7rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.engagement-list h3 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(2.2rem, 4.6vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.inquiry {
  min-height: 98svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.inquiry .section-index {
  color: rgba(255, 253, 248, 0.055);
}

.inquiry__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.inquiry h2 {
  margin-top: 32px;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 48px;
  padding: 17px 25px;
  border: 1px solid var(--gold-soft);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, gap 180ms ease;
}

.button:hover {
  gap: 18px;
  background: var(--bone);
  color: var(--ink);
}

.inquiry footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin-top: clamp(90px, 14vw, 160px);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

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

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 48px 1fr;
  }

  .house-name {
    display: none;
  }

  nav {
    justify-self: end;
  }

  .hero,
  .house-section {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    text-transform: uppercase;
  }

  .hero-title__desktop {
    display: none !important;
  }

  .hero-title__mobile {
    display: block !important;
  }

  .hero-title__lower {
    display: block !important;
    margin-top: 0.34em;
  }

  .hero__aside {
    display: flex;
    min-height: 56svh;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .word-list,
  .engagement-list {
    grid-template-columns: 1fr;
  }

  .word-list p,
  .engagement-list article {
    border-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 78px;
    padding-inline: 18px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero__copy {
    padding: 126px 22px 70px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 6.8rem);
    line-height: 0.86;
  }

  .hero__lede {
    margin-top: 28px;
    font-size: clamp(1.25rem, 5.7vw, 1.85rem);
  }

  .hero__aside {
    padding: 76px 24px 54px;
  }

  .hero__aside span {
    font-size: clamp(2.75rem, 14vw, 4.7rem);
  }

  .house-section,
  .inquiry {
    padding-inline: 22px;
  }

  .section-copy h2,
  .inquiry h2 {
    font-size: clamp(3rem, 13.5vw, 5.6rem);
    line-height: 0.9;
  }

  .section-copy > p:not(.section-label) {
    font-size: 1.18rem;
    line-height: 1.42;
  }

  .word-list p {
    min-height: 96px;
    font-size: clamp(2rem, 10vw, 4.2rem);
  }

  .engagement-list article {
    min-height: 180px;
  }

  .engagement-list h3 {
    font-size: clamp(2.1rem, 10vw, 4.7rem);
  }

  .engagement-list p {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .monogram {
    transform: scale(0.92);
    transform-origin: left center;
  }

  .nav-cta {
    font-size: 0.63rem;
  }

  .section-index,
  .section-number {
    display: none;
  }
}
