:root {
  --bg: #f8f6f1;
  --paper: #fffdf8;
  --ink: #111111;
  --muted: #68645e;
  --line: #d9d2c5;
  --accent: #8d3f2c;
  --max: 1180px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration-color: rgba(141, 63, 44, 0.42);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(248, 246, 241, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 900;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header nav a {
  text-decoration: none;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 70px) 90px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.74fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  min-height: auto;
  padding: 28px 0 24px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label,
.linked-list span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(4.4rem, 8.2vw, 8.8rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(3rem, 5.9vw, 6.1rem);
  line-height: 0.94;
}

.hero p,
.copy p,
.copy li {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  font-weight: 600;
}

.hero p {
  max-width: 620px;
}

.portrait {
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.portrait img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.proof div {
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof div:last-child {
  border-right: 0;
}

.proof strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.proof span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(74px, 10vw, 138px) 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  margin-top: 24px;
}

.copy {
  max-width: 690px;
}

.copy p {
  margin-bottom: 22px;
}

.compact p:last-child,
.copy p:last-child {
  margin-bottom: 0;
}

.build {
  background: var(--ink);
  color: var(--paper);
  margin-right: calc(clamp(18px, 5vw, 70px) * -1);
  margin-left: calc(clamp(18px, 5vw, 70px) * -1);
  padding-right: clamp(18px, 5vw, 70px);
  padding-left: clamp(18px, 5vw, 70px);
}

.build .section-label {
  color: #d7bda3;
}

.build h2 {
  color: var(--paper);
}

.linked-list {
  border-top: 1px solid rgba(255, 253, 248, 0.28);
}

.linked-list a {
  display: grid;
  grid-template-columns: 118px minmax(150px, 0.44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  color: var(--paper);
  text-decoration: none;
}

.linked-list span {
  color: #d7bda3;
}

.linked-list strong {
  font-size: 1.06rem;
}

.linked-list em {
  color: rgba(255, 253, 248, 0.68);
  font-style: normal;
  font-weight: 600;
}

.contact {
  padding: clamp(76px, 10vw, 136px) 0 0;
}

.contact h2 {
  max-width: 960px;
  margin-bottom: 30px;
}

.contact > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 921px) and (max-width: 1280px) {
  .hero {
    padding: 24px 0 22px;
    gap: 26px;
  }
}

@media (max-width: 920px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof div:last-child {
    border-bottom: 0;
  }

  .linked-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.55rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .proof div {
    min-height: 132px;
  }
}
