:root {
  --ink: #101210;
  --paper: #e9e7df;
  --paper-deep: #d8d5ca;
  --acid: #b6a46a;
  --sea: #17332f;
  --clay: #9c6d52;
  --line: rgba(16, 18, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 4vw;
  color: white;
}

.page-header {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: rgba(233, 231, 223, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.light-page {
  background:
    linear-gradient(90deg, rgba(16, 18, 16, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 25vw 100%;
}

.wordmark {
  width: max-content;
  display: flex;
  flex-direction: column;
  line-height: 0.78;
  letter-spacing: 0.15em;
}

.wordmark span {
  font-family: "Italiana", serif;
  font-size: 24px;
}

.wordmark small {
  margin-top: 8px;
  font-size: 7px;
  letter-spacing: 0.58em;
}

nav {
  display: flex;
  gap: 40px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav a,
.header-contact {
  position: relative;
}

nav a::after,
.header-contact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

nav a:hover::after,
.header-contact:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-contact span {
  margin-left: 10px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 18, 16, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(156, 109, 82, 0.18), transparent 28%),
    var(--paper);
  background-size: 25vw 100%, auto, auto;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: breathe 16s ease-in-out infinite alternate;
}

@keyframes breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 10, 0.58), transparent 35%),
    linear-gradient(0deg, rgba(7, 11, 10, 0.72), transparent 48%),
    linear-gradient(90deg, rgba(7, 11, 10, 0.3), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px 4vw 5vh;
}

.eyebrow,
.kicker {
  margin: 0 0 32px;
  color: #4d5b54;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.kicker.light {
  color: rgba(255, 255, 255, 0.62);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #626259;
}

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

h1,
h2,
.contact h2 {
  margin-bottom: 0;
  font-family: "Italiana", serif;
  font-weight: 400;
}

h1 {
  max-width: 1100px;
  font-size: clamp(64px, 10.5vw, 162px);
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.brand-title {
  max-width: none;
  display: grid;
  gap: 0;
  font-size: clamp(88px, 18.2vw, 290px);
  line-height: 0.68;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-title span:last-child {
  padding-left: 0.55em;
  color: #5b5f55;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 6vh;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-color: var(--line);
}

.hero-bottom p {
  max-width: 560px;
  margin: 0;
  color: #4d514b;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.22;
  font-family: "Italiana", serif;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.35s ease, color 0.35s ease;
}

.text-link:hover {
  gap: 28px;
  color: var(--clay);
}

.text-link.dark {
  display: inline-flex;
  margin-top: 38px;
}

.location-stamp {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: 4vw;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.2em;
}

.section {
  padding: 130px 4vw;
}

.section-number {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #59605a;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-number.light {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.statement {
  min-height: 100svh;
}

.statement-content {
  width: 83%;
  margin: 100px 0 0 auto;
}

.statement h2 {
  max-width: 1100px;
  font-size: clamp(52px, 7.5vw, 114px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.statement h2 span {
  color: #848b7b;
}

.statement-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 8vw;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.statement-detail p {
  font-size: 16px;
  line-height: 1.7;
}

.work {
  color: white;
  background: var(--sea);
}

.work-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: 95px;
}

.work-intro h2 {
  font-size: clamp(58px, 8vw, 122px);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.formats {
  margin-top: 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.format-card {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: start;
  padding: 38px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.3s, padding 0.3s;
}

.format-card:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--acid);
}

.format-card > span {
  font-size: 10px;
}

.format-card h3 {
  margin-bottom: 16px;
  font-family: "Italiana", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
}

.format-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.format-card i {
  font-size: 20px;
  font-style: normal;
}

.founders {
  background: var(--paper-deep);
}

.founders-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 95px 0 120px;
}

.founders-heading h2 {
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.founder-list {
  width: 66.66%;
  margin-left: auto;
}

.founder {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: color 0.3s, padding 0.3s;
}

.founder:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--clay);
}

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

.founder > span {
  color: #697069;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder h3 {
  margin: 0 0 10px;
  font-family: "Italiana", serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
}

.founder p {
  grid-column: 2;
  margin: 0;
  color: #697069;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder p i {
  margin-left: 18px;
  color: var(--ink);
  font-style: normal;
}

.page-hero {
  min-height: 78svh;
  padding: 150px 4vw 80px;
}

.page-hero h1 {
  max-width: 1180px;
  color: var(--ink);
  font-size: clamp(74px, 13vw, 210px);
  line-height: 0.82;
  letter-spacing: 0;
}

.page-intro {
  max-width: 640px;
  margin: 56px 0 0 auto;
  color: #4d514b;
  font-family: "Italiana", serif;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.08;
}

.slate-section {
  padding-top: 70px;
}

.slate-list {
  width: 78%;
  margin: 80px 0 0 auto;
  border-top: 1px solid var(--line);
}

.slate-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(220px, 1.2fr) minmax(260px, 1fr);
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.slate-item span {
  color: #6b6d65;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slate-item h2 {
  font-size: clamp(34px, 4.8vw, 78px);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.slate-item p {
  margin: 0;
  color: #4f544e;
  font-size: 15px;
  line-height: 1.65;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 7vw;
  align-items: end;
  margin-top: 80px;
}

.bio-grid .page-intro {
  margin: 0;
}

.bio-copy {
  max-width: 700px;
}

.bio-copy p {
  margin: 0;
  color: #343832;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.62;
}

.bio-copy p + p {
  margin-top: 24px;
}

.bio-copy i {
  font-style: italic;
}

.headshot-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #77786f;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(216, 213, 202, 0.45);
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(216, 213, 202, 0.45);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.principal-portrait img {
  object-position: center center;
}

.catherine-portrait {
  align-self: start;
  margin-top: -26px;
}

.jason-portrait {
  align-self: start;
  margin-top: -26px;
}

.contact {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 4vw 40px;
  color: white;
  background: #0c1110;
}

.contact h2 {
  max-width: 1040px;
  font-size: clamp(74px, 12vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.contact h2 span {
  display: block;
  margin-top: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(20px, 2.6vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.contact-note {
  max-width: 440px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy > a {
  display: inline-flex;
  gap: 30px;
  margin-top: 70px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.contact footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  margin-top: 120px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 36px 4vw 40px;
  border-top: 1px solid var(--line);
}

.page-footer p {
  margin: 0;
  color: #74776d;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.footer-mark span {
  font-size: 34px;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copyright {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 22px;
  }

  nav,
  .header-contact {
    display: none;
  }

  nav.open {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 24px;
    color: var(--paper);
    background: var(--sea);
    font-family: "Italiana", serif;
    font-size: 44px;
    letter-spacing: 0;
    text-transform: none;
  }

  .menu-button {
    width: 32px;
    display: grid;
    gap: 7px;
    padding: 8px 0;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    height: 1px;
    display: block;
    background: white;
  }

  .page-header .menu-button span,
  .light-page .menu-button span {
    background: var(--ink);
  }

  h1 {
    font-size: 18vw;
    line-height: 0.88;
  }

  .brand-title {
    font-size: 25vw;
    line-height: 0.74;
  }

  .brand-title span:last-child {
    padding-left: 0;
  }

  .hero-copy {
    padding: 130px 22px 26px;
  }

  .hero-bottom {
    display: grid;
    gap: 34px;
  }

  .hero-bottom p {
    max-width: 100%;
    font-size: 30px;
  }

  .location-stamp {
    display: none;
  }

  .section {
    padding: 90px 22px;
  }

  .statement-content,
  .founder-list {
    width: 100%;
  }

  .statement-content {
    margin-top: 70px;
  }

  .statement h2,
  .work-intro h2,
  .founders-heading h2 {
    font-size: 14vw;
  }

  .statement-detail,
  .work-intro,
  .founders-heading {
    grid-template-columns: 1fr;
  }

  .statement-detail {
    gap: 24px;
  }

  .work-intro,
  .founders-heading {
    margin-top: 70px;
  }

  .work-intro .kicker,
  .founders-heading .kicker {
    margin-bottom: 50px;
  }

  .formats {
    margin-top: 75px;
  }

  .format-card {
    grid-template-columns: 40px 1fr auto;
  }

  .format-card p {
    font-size: 13px;
  }

  .founders-heading {
    margin-bottom: 80px;
  }

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

  .founder h3,
  .founder p {
    grid-column: 1;
  }

  .founder h3 {
    margin-top: 28px;
  }

  .contact {
    padding: 90px 22px 28px;
  }

  .contact h2 {
    font-size: 18vw;
  }

  .contact-copy > a {
    margin-top: 50px;
    font-size: 13px;
  }

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

  .page-hero {
    min-height: auto;
    padding: 120px 22px 70px;
  }

  .page-hero h1 {
    font-size: 20vw;
  }

  .page-intro,
  .slate-list {
    width: 100%;
    margin-left: 0;
  }

  .page-intro {
    font-size: 34px;
  }

  .slate-list {
    margin-top: 60px;
  }

  .slate-item,
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portrait-frame {
    width: min(100%, 420px);
  }

  .principal-portrait img {
    object-position: 64% 24%;
  }

  .slate-item h2 {
    font-size: 48px;
  }

  footer > p:not(.copyright) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
