:root {
  color-scheme: light;
  --paper: #f2f0e9;
  --ink: #252620;
  --muted: #717168;
  --line: #d7d5cb;
  --clay: #8b6d56;
  --forest: #292f28;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--clay); outline-offset: 5px; }

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { transform: translateY(0); }

.page-shell { width: min(1200px, calc(100% - 96px)); margin-inline: auto; }

.site-header {
  width: min(1440px, calc(100% - 96px));
  min-height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand { width: fit-content; display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.brand-name {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 5px;
  align-items: baseline;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.brand-name > span { font-weight: 400; }
.brand-name small {
  grid-column: 1 / -1;
  margin-top: 1px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .14em;
}

.main-nav { display: flex; gap: 34px; color: #55564f; font-size: 12px; }
.main-nav a { min-height: 44px; display: inline-flex; align-items: center; transition: color 180ms ease; }
.main-nav a:hover, .header-link:hover, .underlined-link:hover, .text-arrow:hover { color: var(--clay); }

.header-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 11px;
  transition: color 180ms ease;
}
.header-link span { color: var(--clay); font-size: 15px; }

.hero {
  position: relative;
  isolation: isolate;
  height: min(760px, calc(100svh - 116px));
  min-height: 560px;
  max-height: 820px;
  margin: 0 24px;
  overflow: hidden;
  background: #77776c;
  color: var(--paper);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; object-fit: cover; object-position: center 54%; }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(24, 27, 23, .12) 0%, transparent 25%, rgba(22, 25, 21, .1) 45%, rgba(20, 23, 19, .74) 100%),
    linear-gradient(90deg, rgba(20, 23, 19, .18), transparent 66%);
}
.hero-topline {
  position: absolute;
  top: 24px;
  right: 26px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  color: rgba(34, 36, 31, .8);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-topline span:last-child {
  padding: 7px 10px;
  background: rgba(242, 240, 233, .72);
  backdrop-filter: blur(8px);
}
.hero-bottom {
  position: absolute;
  right: clamp(28px, 5.4vw, 82px);
  bottom: clamp(34px, 5vw, 72px);
  left: clamp(28px, 5.4vw, 82px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}
.hero-kicker {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(242, 240, 233, .84);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-kicker span { width: 26px; height: 1px; background: #c6a58c; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 8.3vw, 116px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .84;
}
.hero h1 em, .studio h2 em, .contact h2 em { color: #dbc3ae; font-weight: 400; }
.hero-project {
  position: relative;
  width: 230px;
  min-height: 108px;
  padding: 13px 58px 12px 18px;
  border-left: 1px solid rgba(242, 240, 233, .52);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-index { margin-bottom: 7px; color: #dbc3ae; font-size: 9px; letter-spacing: .16em; }
.project-name { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.project-place { margin-top: 4px; color: rgba(242, 240, 233, .75); font-size: 10px; }
.project-arrow {
  position: absolute;
  right: 1px;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 240, 233, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-size: 17px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.hero-project:hover .project-arrow { transform: translateY(-44%); background: var(--paper); color: var(--ink); }

.section-overline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-overline span:first-child { color: var(--clay); }

.studio { padding-top: 118px; padding-bottom: 126px; }
.studio-main {
  margin-top: 40px;
  padding-left: 15%;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 72px;
}
.studio h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(49px, 6.25vw, 82px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .95;
}
.studio h2 em { color: var(--clay); }
.studio-copy { max-width: 340px; padding-bottom: 7px; }
.studio-copy p { margin: 0 0 24px; color: #595a53; font-size: 14px; line-height: 1.8; }
.underlined-link, .text-arrow {
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid #9c9b91;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  font-size: 10px;
  font-weight: 600;
  transition: color 180ms ease;
}
.underlined-link span, .text-arrow span { color: var(--clay); font-size: 14px; }

.project-note {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 68px max(48px, calc((100% - 1200px) / 2)) 64px;
  background: #e7e4db;
}
.project-note-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.project-year { margin: 0; color: var(--muted); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.project-note-body {
  margin-top: 34px;
  padding: 29px 0 36px;
  border-top: 1px solid #c9c7bd;
  border-bottom: 1px solid #c9c7bd;
  display: grid;
  grid-template-columns: 1.1fr .9fr auto;
  align-items: end;
  gap: 54px;
}
.project-note h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.project-note-body > p { max-width: 360px; margin: 0; color: #595a53; font-size: 12px; line-height: 1.8; }
.text-arrow { white-space: nowrap; }
.project-tags { padding-top: 20px; display: flex; gap: 9px; }
.project-tags span { padding: 6px 10px; border: 1px solid #c9c7bd; border-radius: 30px; color: #595a53; font-size: 9px; }

.contact { padding: 62px 0 70px; background: var(--forest); color: var(--paper); }
.contact .section-overline { color: rgba(242, 240, 233, .62); }
.contact .section-overline span:first-child { color: #c6a58c; }
.contact-main { margin-top: 35px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.contact h2 { font-size: clamp(54px, 7vw, 92px); }
.contact-link {
  min-width: 285px;
  margin-bottom: 7px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242, 240, 233, .42);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(242, 240, 233, .9);
  font-size: 11px;
  transition: color 180ms ease, border-color 180ms ease;
}
.contact-link:hover { color: #dbc3ae; border-color: #dbc3ae; }
.contact-arrow { font-size: 18px; }

.site-footer {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #73756b;
  font-size: 9px;
}
.footer-brand { color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.site-footer > a:last-child { min-height: 40px; display: inline-flex; align-items: center; }
.site-footer > a:last-child:hover { color: var(--clay); }

@media (max-width: 900px) {
  .site-header { width: calc(100% - 48px); }
  .page-shell { width: calc(100% - 64px); }
  .hero { min-height: 550px; height: min(700px, calc(100svh - 104px)); margin-inline: 16px; }
  .hero h1 { font-size: clamp(62px, 10vw, 88px); }
  .studio-main { padding-left: 7%; gap: 40px; }
  .project-note { padding-inline: 32px; }
  .project-note-body { grid-template-columns: 1fr 1fr; gap: 26px 40px; }
  .text-arrow { grid-column: 2; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 36px); min-height: 72px; grid-template-columns: 1fr auto; gap: 10px; }
  .brand-mark { width: 34px; height: 34px; font-size: 19px; }
  .brand-name { font-size: 11px; }
  .brand-name small { font-size: 7px; }
  .main-nav { display: none; }
  .header-link { font-size: 0; gap: 0; }
  .header-link span { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 16px; }

  .page-shell { width: calc(100% - 40px); }
  .hero { height: min(700px, calc(100svh - 90px)); min-height: 570px; margin-inline: 10px; }
  .hero-image { object-position: 52% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(24, 27, 23, .06), transparent 30%, rgba(20, 23, 19, .14) 45%, rgba(20, 23, 19, .8) 100%); }
  .hero-topline { top: 17px; right: 15px; left: 15px; gap: 12px; font-size: 7px; letter-spacing: .1em; }
  .hero-topline span:last-child { padding: 6px; text-align: right; }
  .hero-bottom { right: 20px; bottom: 25px; left: 20px; flex-direction: column; align-items: flex-start; gap: 25px; }
  .hero-kicker { margin-bottom: 15px; font-size: 8px; }
  .hero h1 { font-size: clamp(60px, 15vw, 82px); }
  .hero-project { width: 100%; min-height: 76px; padding: 11px 54px 11px 14px; border-top: 1px solid rgba(242, 240, 233, .5); border-left: 0; }
  .project-index { margin-bottom: 3px; font-size: 8px; }
  .project-name { font-size: 18px; }
  .project-place { margin-top: 1px; font-size: 9px; }
  .project-arrow { right: 4px; width: 36px; height: 36px; }

  .studio { padding-top: 75px; padding-bottom: 78px; }
  .studio-main { margin-top: 28px; padding-left: 0; grid-template-columns: 1fr; gap: 24px; }
  .studio h2 { font-size: clamp(47px, 12vw, 64px); }
  .studio-copy { max-width: 360px; }
  .studio-copy p { margin-bottom: 17px; font-size: 13px; }

  .project-note { padding: 40px 20px 38px; }
  .project-note-body { margin-top: 25px; padding: 22px 0 25px; grid-template-columns: 1fr; gap: 16px; }
  .project-note h2 { font-size: 42px; }
  .project-note-body > p { font-size: 12px; }
  .text-arrow { grid-column: auto; }
  .project-tags { flex-wrap: wrap; }

  .contact { padding: 42px 0 48px; }
  .contact-main { margin-top: 25px; flex-direction: column; align-items: flex-start; gap: 26px; }
  .contact h2 { font-size: clamp(53px, 14vw, 74px); }
  .contact-link { width: min(100%, 330px); min-width: 0; }
  .site-footer { min-height: 86px; flex-wrap: wrap; gap: 4px 14px; padding-block: 16px; }
  .site-footer > span { order: 3; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
