:root {
  --ink: #17232f;
  --paper: #f7ecdf;
  --paper-deep: #e1d4c3;
  --annotation: #435d71;
  --warm: #a5763f;
  --line: rgba(23, 35, 47, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--annotation);
  color: var(--paper);
}

.site-header {
  min-height: 94px;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header-cta span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover span {
  background: var(--annotation);
  color: var(--paper);
  transform: rotate(8deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: calc(100svh - 94px);
  padding: clamp(4.5rem, 8vw, 8rem) 4.5vw 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 28vw);
  grid-template-rows: 1fr auto;
  column-gap: 8vw;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 36vw;
  height: 36vw;
  min-width: 360px;
  min-height: 360px;
  right: -14vw;
  top: 6vh;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  max-width: 900px;
  align-self: center;
}

.eyebrow,
.section-label {
  margin: 0 0 2rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 8vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.83;
}

h1 span {
  display: block;
  margin-left: 0.35em;
  color: var(--annotation);
  font-style: italic;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2.3rem;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6rem;
  min-width: 245px;
  padding: 1rem 1.1rem 1rem 1.35rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: background 180ms ease, color 180ms ease;
}

.primary-button:hover {
  background: var(--annotation);
  color: var(--paper);
}

.primary-button span {
  font-size: 1.2rem;
}

.text-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.hero-note {
  align-self: center;
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 22px 22px 0 var(--warm);
}

.note-rule {
  width: 48px;
  height: 1px;
  margin-bottom: 2.2rem;
  background: var(--warm);
}

.hero-note p {
  margin-bottom: 2.7rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-style: italic;
  line-height: 1.25;
}

.hero-note span {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-section {
  padding: clamp(6rem, 10vw, 10rem) 4.5vw;
  background: var(--ink);
  color: var(--paper);
}

.work-heading {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.65fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 6rem;
}

.work-heading .section-label {
  align-self: start;
}

.work-heading h2,
.approach-intro h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.work-heading h2 {
  max-width: 600px;
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.work-heading > p:last-child {
  max-width: 310px;
  margin: 0;
  color: rgba(247, 236, 223, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(247, 236, 223, 0.22);
  border-bottom: 1px solid rgba(247, 236, 223, 0.22);
}

.service-card {
  min-height: 470px;
  padding: 2rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(247, 236, 223, 0.22);
}

.service-card:last-child {
  border-right: 0;
}

.service-card > span,
.approach-steps > li > span {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 260px;
  margin: 4.8rem 0 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-card > p {
  max-width: 370px;
  color: rgba(247, 236, 223, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(247, 236, 223, 0.18);
  font-size: 0.78rem;
}

.featured-card {
  background: var(--annotation);
}

.featured-card > span {
  color: var(--paper-deep);
}

.statement {
  padding: clamp(5rem, 9vw, 9rem) 4.5vw;
  background: var(--paper-deep);
}

.statement p {
  max-width: 1200px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 6.8vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.statement em {
  color: var(--annotation);
  font-weight: 400;
}

.approach-section {
  padding: clamp(6rem, 10vw, 10rem) 4.5vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}

.approach-intro {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.approach-intro h2 {
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
}

.approach-intro > p:last-child {
  max-width: 560px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.72;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.approach-steps li {
  padding: 2rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.approach-steps h3 {
  margin: 3.5rem 0 1.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.approach-steps p {
  max-width: 510px;
  margin: 0;
  color: rgba(23, 35, 47, 0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}

.about-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.about-monogram {
  min-height: 680px;
  padding: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.about-monogram::before,
.about-monogram::after {
  content: none;
}

.about-monogram img {
  width: min(52%, 390px);
  height: auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
  background: var(--paper);
}

.about-copy {
  padding: clamp(5rem, 8vw, 9rem) clamp(2.5rem, 7vw, 8rem);
  align-self: center;
}

.about-copy h2 {
  max-width: 650px;
  margin-bottom: 2.8rem;
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.about-copy > p:not(.section-label) {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-copy .about-lead {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.venture-section {
  padding: clamp(5rem, 9vw, 9rem) 4.5vw;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.venture-mark {
  min-height: 360px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--warm);
  color: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(9rem, 20vw, 18rem);
  font-style: italic;
  line-height: 1;
}

.venture-mark::after {
  content: '';
  width: 72%;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(247, 236, 223, 0.46);
  border-radius: 50%;
}

.venture-mark span {
  position: relative;
  z-index: 1;
}

.venture-copy {
  padding-top: 1rem;
}

.venture-copy h2 {
  margin: 0 0 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.venture-copy .venture-lead {
  max-width: 740px;
  margin-bottom: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.45;
}

.venture-copy > p:last-child {
  max-width: 650px;
  color: rgba(23, 35, 47, 0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}

.profile-link {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-section {
  padding: clamp(5rem, 8vw, 8rem) 4.5vw 4rem;
  background: var(--annotation);
  color: var(--paper);
}

.contact-section > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(247, 236, 223, 0.3);
}

.contact-section h2 {
  max-width: 950px;
  font-size: clamp(3.8rem, 8.2vw, 8.8rem);
}

.contact-button {
  width: 150px;
  height: 150px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 50%;
  background: var(--warm);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.contact-button:hover {
  transform: rotate(6deg) scale(1.04);
}

.contact-button span {
  align-self: flex-end;
  font-size: 1.3rem;
}

.contact-note {
  max-width: 440px;
  margin: 2.5rem 0 0 auto;
  color: rgba(247, 236, 223, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

footer {
  padding: 2.2rem 4.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

footer p {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

footer p:last-child {
  justify-self: end;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  padding: 2px;
  background: var(--paper);
}

.footer-brand .brand-name {
  font-size: 0.78rem;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 80px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    min-width: 180px;
    padding: 1.4rem;
    display: grid;
    gap: 1.1rem;
    position: absolute;
    right: 0;
    top: 2rem;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  h1 {
    font-size: clamp(3.7rem, 16vw, 6rem);
  }

  h1 span {
    margin-left: 0;
  }

  .hero-note {
    width: calc(100% - 18px);
    max-width: 520px;
    justify-self: start;
    padding: 2rem;
    box-shadow: 14px 14px 0 var(--warm);
  }

  .hero-index {
    margin-top: 1.5rem;
  }

  .work-heading,
  .approach-section,
  .about-section,
  .venture-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .work-heading {
    margin-bottom: 4rem;
  }

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

  .service-card {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 236, 223, 0.22);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .approach-intro {
    position: static;
  }

  .about-monogram {
    min-height: 480px;
  }

  .venture-mark {
    min-height: 320px;
  }

  .contact-section > div {
    grid-template-columns: 1fr;
  }

  .contact-button {
    width: 128px;
    height: 128px;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  footer p:nth-of-type(1) {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .primary-button {
    width: 100%;
  }

  .hero-index span:last-child {
    display: none;
  }

  .work-heading {
    display: block;
  }

  .work-heading h2 {
    margin-bottom: 2rem;
  }

  .service-card {
    min-height: 440px;
    padding: 1.6rem;
  }

  .statement p {
    font-size: 3.4rem;
  }

  .about-monogram {
    min-height: 360px;
  }

  .contact-section > div {
    gap: 2.5rem;
  }

  footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
