:root {
  --primary: #452e29;
  --secondary: #f5cbd9;
  --paper: #f4eee8;
  --ink: #241916;
  --white: #fffaf8;
  --line: rgba(69, 46, 41, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--primary);
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4vw;
  color: var(--white);
  mix-blend-mode: normal;
  transition: background 0.3s ease, color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(69, 46, 41, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: -0.04em;
}

.brand-main {
  font-size: 1.55rem;
  font-weight: 600;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.23em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 145px 4vw 42px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -20vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.92;
}

.hero::before {
  content: "";
  position: absolute;
  right: 19vw;
  top: 13vh;
  width: 12vw;
  height: 12vw;
  border: 1px solid rgba(245,203,217,.55);
  border-radius: 50%;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  font-size: .72rem;
  letter-spacing: .22em;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero h1 {
  font-size: clamp(4.5rem, 9.5vw, 10rem);
  line-height: .84;
  font-weight: 500;
  letter-spacing: -.075em;
  max-width: 1100px;
}

.hero h1 em,
.statement h2 em,
.contact h2 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: var(--secondary);
}

.hero-content > p {
  max-width: 560px;
  margin-top: 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,250,248,.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  padding: 15px 20px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button-light {
  background: var(--secondary);
  color: var(--primary);
}

.text-link {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  left: 4vw;
  right: 4vw;
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  font-size: .67rem;
  letter-spacing: .2em;
  color: rgba(255,250,248,.6);
}

.section {
  padding: 110px 4vw;
}

.section-label {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
  border-bottom: 1px solid var(--line);
}

.manifesto-copy {
  max-width: 900px;
}

.eyebrow {
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
}

.manifesto h2,
.section-head h2,
.services-intro h2,
.about h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 500;
}

.body-copy {
  max-width: 680px;
  margin-top: 36px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.work {
  background: var(--secondary);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 55px;
}

.section-head .section-label {
  margin-bottom: 22px;
}

.section-head > p {
  max-width: 360px;
  line-height: 1.6;
  font-size: .9rem;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.project-large {
  grid-row: span 2;
}

.project-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--primary);
}

.project-large .project-image {
  min-height: 720px;
}

.image-one {
  background:
    linear-gradient(135deg, rgba(69,46,41,.25), rgba(69,46,41,.82)),
    radial-gradient(circle at 70% 25%, #c394a5 0, transparent 35%),
    #2e1f1b;
}

.image-two {
  background:
    linear-gradient(145deg, rgba(245,203,217,.15), rgba(69,46,41,.8)),
    linear-gradient(90deg, #61413a, #2c1d19);
}

.image-three {
  background:
    linear-gradient(30deg, rgba(245,203,217,.35), transparent),
    #4b322c;
}

.project-placeholder {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .18em;
}

.project-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(69,46,41,.25);
}

.project-info h3 {
  font-size: 1rem;
  font-weight: 500;
}

.project-info p,
.project-info span {
  margin-top: 6px;
  font-size: .72rem;
  opacity: .7;
}

.services-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7vw;
}

.services-intro p {
  max-width: 420px;
  margin-top: 30px;
  line-height: 1.6;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > span {
  font-size: .7rem;
  opacity: .65;
}

.service-item h3 {
  font-size: 1.35rem;
  font-weight: 500;
}

.service-item p {
  margin-top: 9px;
  line-height: 1.6;
  font-size: .88rem;
  max-width: 580px;
}

.statement {
  background: var(--primary);
  color: var(--white);
  padding: 130px 4vw;
}

.statement-inner p {
  font-size: .7rem;
  letter-spacing: .22em;
  margin-bottom: 24px;
}

.statement h2 {
  font-size: clamp(3.7rem, 8vw, 8.5rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 500;
}

.about {
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-top: 45px;
}

.about-right {
  padding-top: 8px;
}

.about-right p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 45px;
}

.founder span {
  font-size: .64rem;
  letter-spacing: .2em;
}

.founder strong {
  font-size: 1.4rem;
  font-weight: 500;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.process-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.process-card span {
  font-size: .7rem;
  opacity: .65;
}

.process-card h3 {
  margin-top: auto;
  font-size: 1.6rem;
  font-weight: 500;
  max-width: 250px;
}

.process-card p {
  margin-top: 14px;
  line-height: 1.55;
  font-size: .85rem;
}

.contact {
  min-height: 85vh;
  background: var(--secondary);
  padding: 50px 4vw 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-top,
.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-top > p {
  font-size: .67rem;
  letter-spacing: .17em;
}

.contact-main {
  padding: 80px 0;
}

.contact h2 {
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 500;
}

.contact h2 em {
  color: var(--primary);
}

.contact-email {
  display: inline-block;
  margin-top: 45px;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: .75rem;
}

.contact-bottom > p {
  font-size: .72rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,.15);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .hero::after {
    width: 80vw;
    height: 80vw;
    right: -30vw;
    bottom: -20vw;
  }

  .manifesto,
  .services-wrap,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 40px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .project-large {
    grid-row: auto;
  }

  .project-large .project-image,
  .project-image {
    min-height: 520px;
  }

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

  .process-card {
    min-height: 240px;
  }
}

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

  .hero,
  .section,
  .statement,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero h1 {
    font-size: 15vw;
  }

  .hero-content > p {
    font-size: .93rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    left: 20px;
    right: 20px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .project-large .project-image,
  .project-image {
    min-height: 390px;
  }

  .contact-top,
  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-bottom {
    gap: 14px;
  }
}
