:root {
  --ink: #211d1b;
  --paper: #f7f3ec;
  --paper-2: #eee6da;
  --accent: #887665;
  --accent-dark: #2f2a26;
  --line: rgba(33, 29, 27, .22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; width: 100%; }
.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.2vw;
  color: var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
}
.brand-mark {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}
nav { display: flex; align-items: center; gap: 1.7rem; }
nav a { font-size: .86rem; text-decoration: none; }
.nav-cta { border: 1px solid rgba(33,29,27,.38); padding: .65rem 1rem; }
.hero {
  min-height: 760px;
  height: 100svh;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  background: var(--paper-2);
  color: var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 7vw 5rem;
}
.eyebrow {
  margin: 0 0 1.5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-weight: 400; }
h1 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 7.2vw, 8.2rem);
  line-height: .82;
  letter-spacing: -.055em;
}
h1 em { font-weight: 400; }
.intro { max-width: 34rem; margin: 0; font-size: clamp(1.05rem, 1.35vw, 1.35rem); }
.hero-actions { display: flex; align-items: center; gap: 1.7rem; margin-top: 2.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .85rem 1.2rem;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
}
.button-primary { background: var(--accent-dark); color: #fff; }
.button-text { padding-inline: 0; border-bottom: 1px solid rgba(33,29,27,.55); }
.link-with-arrow { display: inline-flex; align-items: center; gap: .55rem; }
.link-arrow {
  position: relative;
  display: inline-block;
  width: .85rem;
  height: .6rem;
  flex: 0 0 auto;
}
.link-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: .05rem;
  border-top: 1px solid currentColor;
  transform: translateY(-50%);
}
.link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: .05rem;
  width: .32rem;
  height: .32rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.hero-image { position: relative; margin: 0; overflow: hidden; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(47,42,38,.14), transparent 45%); }
.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.88) contrast(.96) brightness(1.02) sepia(.045);
}
.hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 1.5rem;
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
}
.approach, .work { padding: 8rem 6vw; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.section-heading h2, .contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.045em;
  max-width: 13ch;
}
.pathways { display: grid; grid-template-columns: 1fr 1fr; margin-top: 6rem; border-top: 1px solid var(--line); }
.pathway { min-height: 420px; padding: 2.2rem 7vw 2.2rem 0; display: flex; flex-direction: column; }
.pathway + .pathway { padding-left: 4vw; border-left: 1px solid var(--line); }
.number { color: var(--accent); font-family: var(--serif); font-style: italic; }
.pathway h3 { margin: auto 0 1.2rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.4rem); }
.pathway p { max-width: 38rem; }
.pathway .note { color: #6c625d; font-size: .9rem; }
.pathway a { width: fit-content; margin-top: 1rem; color: var(--accent-dark); font-weight: 700; text-underline-offset: .35rem; }
.work { background: var(--paper-2); }
.section-heading.compact { margin-bottom: 4rem; }
.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem 2rem; }
.project {
  min-width: 0;
  background: rgba(247,243,236,.68);
  border-bottom: 1px solid var(--line);
}
.project.featured { grid-column: auto; }
.project-image { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #d5cabd; }
.project-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: rgba(181,151,117,.055); mix-blend-mode: multiply; }
.project.featured .project-image { aspect-ratio: 4 / 3; }
.project-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(.93) brightness(1.045) sepia(.09);
}
.project.featured .project-image img { object-position: center 58%; }
.project:nth-child(2) .project-image img { object-position: center 50%; }
.project:nth-child(3) .project-image img { object-position: center 47%; }
.project:nth-child(4) .project-image img { object-position: center 44%; }
.project-content { display: grid; grid-template-columns: .7fr 1.3fr; gap: 2rem; padding: 2rem; }
.project h3 { margin: .2rem 0 0; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.3rem); }
.project-type { margin: .55rem 0 0; color: #6c625d; font-size: .82rem; }
.location { margin: 0; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 0; align-content: center; }
dl div { display: flex; flex-direction: column; }
dt { order: 2; color: #6c625d; font-size: .76rem; }
dd { margin: 0; font-family: var(--serif); font-size: 1.55rem; }
.disclaimer { margin: 1.4rem 0 0; color: #756a64; font-size: .78rem; }
.contact {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
  padding: 8rem 6vw;
  background: #ded2c3;
  color: var(--ink);
}
.contact h2 { max-width: 11ch; margin-bottom: 0; }
.brand-signature {
  width: min(34rem, 90%);
  margin: 2.5rem 0 0;
  mix-blend-mode: multiply;
  opacity: .68;
}
.brand-signature img {
  filter: grayscale(1) contrast(1.05);
}
.contact-detail { align-self: end; max-width: 38rem; }
.contact-detail p { font-size: 1.05rem; }
.button-light { margin-top: 1.5rem; background: var(--accent-dark); color: #fff; }
.founders { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 1rem; }
.founder { display: grid; grid-template-columns: 165px 1fr; align-items: end; gap: 1.4rem; margin: 0; padding-top: 2rem; border-top: 1px solid rgba(33,29,27,.25); }
.founder-photo {
  display: block;
  width: 165px;
  height: 165px;
  overflow: hidden;
}
.founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(.96) brightness(1.02);
}
.founder:nth-child(1) img { transform: scale(1.24); transform-origin: center 28%; }
.founder:nth-child(2) img { transform: scale(1.13); }
.founder figcaption { display: flex; flex-direction: column; gap: .35rem; padding-bottom: .25rem; }
.founder strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.founder span { color: #685d55; font-size: .8rem; }
footer { display: flex; justify-content: space-between; padding: 1.4rem 6vw; background: var(--accent-dark); color: #e7ded3; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
a:focus-visible { outline: 3px solid #dfb153; outline-offset: 4px; }
@media (hover: hover) {
  .button, nav a, .pathway a { transition: opacity .2s ease, transform .2s ease; }
  .button:hover, nav a:hover, .pathway a:hover { opacity: .72; }
  .button:hover { transform: translateY(-2px); }
}
@media (max-width: 860px) {
  .site-header { position: absolute; padding: 1.2rem; }
  nav a:not(.nav-cta) { display: none; }
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: 690px; padding: 8rem 1.4rem 4rem; }
  h1 { font-size: clamp(4rem, 19vw, 6.5rem); }
  .hero-image { height: 58svh; min-height: 430px; }
  .approach, .work { padding: 5.5rem 1.4rem; }
  .section-heading { grid-template-columns: 1fr; gap: 0; }
  .pathways { grid-template-columns: 1fr; margin-top: 3rem; }
  .pathway { min-height: 360px; padding: 2rem 0; }
  .pathway + .pathway { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .project { grid-template-columns: 1fr; gap: 1.4rem; }
  .projects { grid-template-columns: 1fr; }
  .project.featured { grid-column: auto; }
  .project-content { grid-template-columns: 1fr; gap: 1.4rem; padding: 1.4rem; }
  .project-image, .project.featured .project-image { aspect-ratio: 4 / 3; }
  dl { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; padding: 5.5rem 1.4rem; }
  .brand-signature { width: min(29rem, 100%); margin-top: 2rem; }
  .founders { grid-column: auto; }
  footer { padding-inline: 1.4rem; }
}
@media (max-width: 480px) {
  .brand { gap: .55rem; font-size: .68rem; letter-spacing: .13em; }
  .brand-mark { width: 1.8rem; height: 1.8rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: .7rem; }
  .button-text { align-self: flex-start; }
  .hero-image figcaption { right: 1rem; bottom: 1rem; }
  .founders { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 118px 1fr; }
  .founder-photo { width: 118px; height: 118px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
