@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
  --bg: #f3f0e9;
  --text: #292724;
  --muted: #77726a;
  --line: #bdb7ad;
}

* { box-sizing: border-box; }

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

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

.header, main, footer {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.header {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
}

.status, .eyebrow, .section-label, .index, .role, .open, footer {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.status, .index, .section-label, .role, .open, footer {
  color: var(--muted);
}

.hero {
  min-height: 74vh;
  padding: 75px 0 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-meta,
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-meta .eyebrow { margin: 0; }

h1 {
  margin: 65px 0 70px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(72px, 11vw, 155px);
  font-weight: 400;
  line-height: .87;
  letter-spacing: -.045em;
}

h1 em, h2 em { font-style: italic; }

.hero-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.team, .services, .studio, .contact {
  border-top: 1px solid var(--line);
  padding: 28px 0 115px;
}

.team-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.team-grid article {
  background: var(--bg);
  min-height: 300px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.role { margin: 0 0 25px; }

.team h2,
.studio h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .95;
}

.actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.actions a,
.studio-info a,
.contact-grid a {
  color: var(--text);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1.8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
  margin-top: 13px;
  transition: opacity .2s ease;
}

.actions a:hover,
.studio-info a:hover,
.contact-grid a:hover { opacity: .55; }

.actions span,
.studio-info span,
.contact-grid span { margin-left: 8px; }

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

.service-list div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.service-list h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 55px);
  font-weight: 400;
}

.studio-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.studio-info p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.studio-info a {
  display: inline-block;
  margin-top: 30px;
}

.contact-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-grid a {
  margin-top: 0;
  padding: 18px 0;
}

footer {
  border-top: 1px solid var(--line);
  padding: 25px 0 35px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .header, main, footer {
    width: calc(100% - 36px);
  }

  .hero {
    min-height: 70vh;
    padding: 55px 0 75px;
  }

  h1 {
    margin: 55px 0;
    font-size: clamp(62px, 18vw, 105px);
  }

  .hero-bottom { display: block; }
  .open { display: block; margin-top: 25px; }

  .team-grid,
  .studio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid article {
    min-height: 230px;
    border-bottom: 1px solid var(--line);
  }

  .team-grid article:last-child { border-bottom: 0; }

  .studio-info { margin-top: 45px; }

  .team, .services, .studio, .contact {
    padding-bottom: 80px;
  }

  footer {
    display: block;
    line-height: 2.2;
  }
}
