:root {
  --ink: #121211;
  --paper: #f4f1ea;
  --muted: #746f66;
  --line: rgba(18, 18, 17, 0.16);
  --white: #fffaf2;
  --teal: #315f5b;
  --copper: #a8613f;
  --charcoal: #1c1b19;
  --black: #0d0d0d;
  --warm-line: rgba(255, 250, 242, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
  mix-blend-mode: difference;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: flex;
  width: 42px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

.brand-mark i,
.cover-mark i,
.logo-study i {
  position: absolute;
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-36deg);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark .mark-s,
.cover-mark .mark-s {
  margin-right: -0.19em;
}

.brand-mark .mark-l,
.cover-mark .mark-l {
  margin-left: -0.04em;
}

.brand-name,
.nav a,
.eyebrow,
.studio-line,
.microline,
.section-kicker,
.project-meta span,
.process-list span,
.hero-footer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  gap: clamp(16px, 3vw, 36px);
}

.nav a {
  opacity: 0.86;
}

.brand-name,
.eyebrow,
.studio-line,
.visual-brand {
  text-transform: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  grid-template-columns: minmax(320px, 0.56fr) minmax(320px, 0.44fr);
  padding: 110px clamp(22px, 7vw, 96px) 72px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 56%, rgba(177, 126, 82, 0.12), transparent 27%),
    linear-gradient(90deg, rgba(255, 250, 242, 0.035), transparent 36%),
    var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, var(--warm-line) 12% calc(12% + 1px), transparent calc(12% + 1px)),
    linear-gradient(0deg, transparent 0 88%, rgba(255, 250, 242, 0.1) 88% calc(88% + 1px), transparent calc(88% + 1px));
  opacity: 0.48;
  content: "";
}

.cover-visual {
  position: absolute;
  inset: 0 0 0 49%;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(13, 13, 13, 0.74) 12%, rgba(13, 13, 13, 0.12) 42%, rgba(13, 13, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.24), transparent 38%),
    url("hero-architecture-reference.png") center right / cover no-repeat;
  opacity: 0.88;
}

.cover-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.46), transparent 42%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.28), transparent 46%);
  content: "";
}

.cover-brand {
  display: grid;
  width: min(285px, 62vw);
  justify-items: center;
  margin: 0 0 clamp(44px, 7vw, 82px);
}

.cover-mark {
  position: relative;
  display: flex;
  width: clamp(96px, 10vw, 136px);
  height: clamp(82px, 8.8vw, 118px);
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
  color: rgba(255, 250, 242, 0.9);
}

.cover-mark span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 1;
}

.cover-mark i {
  width: 118%;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: min(100%, 720px);
}

.eyebrow {
  margin: 0 0 7px;
  color: rgba(255, 250, 242, 0.8);
  letter-spacing: 0.34em;
  text-align: center;
}

.studio-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  width: min(170px, 42vw);
  margin: -1px 0 7px;
  color: rgba(255, 250, 242, 0.64);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-align: center;
}

.studio-line span {
  height: 1px;
  background: rgba(255, 250, 242, 0.38);
}

.microline {
  margin: 0;
  color: rgba(255, 250, 242, 0.46);
  font-size: 7px;
  letter-spacing: 0.22em;
  text-align: center;
}

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

h1 {
  position: relative;
  max-width: 680px;
  margin-block-end: 22px;
  padding-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(66px, 8.2vw, 126px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.12em;
}

h1::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.74), rgba(255, 250, 242, 0.18));
  content: "";
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-footer {
  position: absolute;
  right: clamp(22px, 7vw, 96px);
  bottom: 28px;
  left: clamp(22px, 7vw, 96px);
  z-index: 2;
  display: grid;
  grid-template-columns: 0.64fr 1fr auto;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 242, 0.26);
  color: rgba(255, 250, 242, 0.58);
}

.section {
  padding: clamp(64px, 10vw, 128px) clamp(22px, 7vw, 96px);
}

.section-kicker {
  color: var(--copper);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .section-kicker,
.work .section-kicker {
  color: #d9976c;
}

.section-dark p {
  color: rgba(255, 250, 242, 0.66);
}

.portfolio-spread,
.services-spread,
.process-spread {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  border-top: 1px solid rgba(255, 250, 242, 0.1);
}

.spread-copy h2,
.series-head h2,
.technology h2 {
  max-width: 800px;
  margin: 18px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.spread-copy p,
.series-head p,
.contact-note {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
}

.spread-visual,
.wide-reference {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.12);
  background: #151412;
}

.spread-visual img,
.wide-reference img,
.portfolio-map img,
.series-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.spread-visual {
  aspect-ratio: 1.5;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin-top: 34px;
  background: rgba(255, 250, 242, 0.15);
}

.proof-grid span {
  min-height: 88px;
  padding: 18px;
  background: #11100f;
  color: rgba(255, 250, 242, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.services-spread {
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 0.78fr);
}

.services-spread .wide-reference {
  grid-column: 1 / -1;
  aspect-ratio: 1.5;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 242, 0.14);
}

.service-list article {
  min-height: 220px;
  padding: 24px;
  background: #11100f;
}

.service-list span,
.timeline span {
  color: #d9976c;
  font-size: 12px;
  font-weight: 700;
}

.service-list h3 {
  margin: 52px 0 14px;
  font-size: 24px;
  line-height: 1.08;
}

.service-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.image-series,
.portfolio-map {
  border-top: 1px solid rgba(255, 250, 242, 0.1);
}

.series-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.series-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
}

.series-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #161513;
}

.series-large {
  grid-row: span 2;
  min-height: 880px;
}

.series-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  content: "";
}

.series-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.series-card span {
  color: rgba(255, 250, 242, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.series-card h3 {
  max-width: 520px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 48px);
  font-weight: 400;
  line-height: 0.98;
}

.clay-card img {
  filter: saturate(0.35) contrast(1.02);
}

.timeline {
  display: grid;
  gap: 1px;
  max-width: 560px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 250, 242, 0.14);
}

.timeline li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  background: #11100f;
  color: rgba(255, 250, 242, 0.82);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 242, 0.14);
}

.page-system article {
  min-height: 320px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(217, 151, 108, 0.08), transparent 42%),
    #11100f;
}

.page-system span {
  color: #d9976c;
  font-size: 12px;
  font-weight: 700;
}

.page-system h3 {
  margin: 120px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
}

.page-system p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.technology {
  background: #efebe2;
}

.technology h2 {
  max-width: 980px;
  color: var(--ink);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.tech-grid span {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: #f8f4eb;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.visual-system {
  padding-block: clamp(34px, 6vw, 72px);
  background: var(--black);
  color: var(--white);
}

.visual-system .section-kicker {
  color: #d9976c;
}

.visual-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 360px);
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.visual-brand {
  margin-bottom: 18px;
  color: rgba(255, 250, 242, 0.64);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.logo-study {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid rgba(255, 250, 242, 0.44);
  color: rgba(255, 250, 242, 0.86);
}

.logo-study span {
  position: relative;
  z-index: 1;
  font-size: clamp(44px, 7vw, 92px);
}

.logo-study i {
  width: 138%;
}

.intro {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
}

.intro-copy h2,
.work-head h2,
.process h2,
.contact h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(34px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy p,
.work-head p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.capabilities {
  border-block: 1px solid var(--line);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.capability-grid article {
  min-height: 310px;
  padding: 30px;
  background: var(--paper);
}

.capability-grid span {
  display: block;
  margin-bottom: 80px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.capability-grid h2 {
  max-width: 310px;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.capability-grid p,
.process-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.work .section-kicker {
  color: #d9976c;
}

.work-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.work-head p {
  color: rgba(255, 250, 242, 0.64);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.project {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #2b2925;
}

.project-large {
  grid-row: span 2;
  min-height: 860px;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.project::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  content: "";
}

.project-meta {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
}

.project-meta span {
  color: rgba(255, 250, 242, 0.66);
}

.project-meta h3 {
  max-width: 460px;
  margin: 10px 0 0;
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.clay {
  display: grid;
  place-items: center;
}

.clay-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.08), transparent 42%),
    #d6d1c8;
}

.clay-visual span {
  position: absolute;
  display: block;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 22px 28px 60px rgba(0, 0, 0, 0.16);
}

.clay-visual span:nth-child(1) {
  width: 46%;
  height: 52%;
  right: 16%;
  bottom: 16%;
}

.clay-visual span:nth-child(2) {
  width: 32%;
  height: 28%;
  right: 35%;
  bottom: 42%;
  transform: skewY(-12deg);
}

.clay-visual span:nth-child(3) {
  width: 1px;
  height: 88%;
  left: 26%;
  top: 6%;
  background: rgba(18, 18, 17, 0.28);
  box-shadow: none;
  transform: rotate(18deg);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.process .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -40px;
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  background: var(--paper);
}

.process-list span {
  color: var(--teal);
}

.process-list p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 40px;
  align-items: end;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  color: var(--white);
  font-size: 18px;
}

.contact-links a::after {
  content: "->";
  color: var(--copper);
}

@media (max-width: 820px) {
  .site-header {
    padding: 18px 18px;
  }

.brand-name {
    max-width: 94px;
    line-height: 1.05;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 10px;
  }

  .hero {
    min-height: 92svh;
    grid-template-columns: 1fr;
    padding: 94px 20px 96px;
  }

  .cover-visual {
    inset: 42% 0 0 18%;
    opacity: 0.54;
  }

  .cover-brand {
    margin-bottom: 36px;
  }

  .cover-mark {
    width: 82px;
    height: 74px;
    opacity: 0.78;
  }

  .hero-footer,
  .intro,
  .work-head,
  .process,
  .contact,
  .visual-panel,
  .portfolio-spread,
  .services-spread,
  .process-spread,
  .series-head {
    grid-template-columns: 1fr;
  }

  .hero-footer {
    gap: 8px;
    grid-template-columns: 1fr auto;
  }

  .capability-grid,
  .project-grid,
  .service-list,
  .series-grid,
  .tech-grid,
  .page-system {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: 240px;
  }

  .capability-grid span {
    margin-bottom: 56px;
  }

  .project,
  .project-large,
  .series-card,
  .series-large {
    min-height: 460px;
  }

  .services-spread .wide-reference {
    grid-column: auto;
  }

  .process .section-kicker {
    margin-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .nav a {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(58px, 21vw, 92px);
  }

  .hero-footer {
    font-size: 11px;
  }

  .intro-copy h2,
  .work-head h2,
  .process h2,
  .contact h2,
  .spread-copy h2,
  .series-head h2,
  .technology h2 {
    font-size: 36px;
  }

  .proof-grid,
  .service-list,
  .timeline {
    grid-template-columns: 1fr;
  }
}
