@font-face {
  font-family: "Jacquard 12";
  src: url('../assets/fonts/jacquard-12-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans Code";
  src: url('../assets/fonts/google-sans-code-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans Code";
  src: url('../assets/fonts/google-sans-code-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #0e1111;
  --surface: #131717;
  --text: #eef1ef;
  --muted: #9aa3a0;
  --accent: #62b8b2;
  --border: rgba(238, 241, 239, .13);
  --page: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--background); }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
::selection { color: var(--background); background: var(--accent); }
.jacquard-12-regular { font-family: "Jacquard 12", system-ui; }
.google-sans-code-regular { font-family: "Google Sans Code", monospace; }
.primary { color: var(--accent); }
.gray { color: var(--muted); }
.b--primary { border-color: var(--accent); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99; padding: .6rem 1rem; color: #07100f; background: var(--accent); }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14, 17, 17, .94);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: min(calc(100% - 48px), var(--page));
  height: 64px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-name { font-size: 1.65rem; line-height: 1; text-decoration: none; }
.site-header nav { display: flex; gap: 2.25rem; }
.site-header nav a {
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav a:hover { color: var(--text); }

.home-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #101313;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/bg-narrow.png');
  background-position: center;
  background-size: auto 100%;
  background-repeat: repeat-x;
  opacity: .3;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,19,19,.05), rgba(16,19,19,.72));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 820px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo { width: min(100%, 690px); }
.hero-inner p { margin: 1.75rem 0 .8rem; color: var(--accent); font-size: .76rem; font-style: italic; }
.hero-link { color: var(--muted); font-size: .67rem; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.hero-link:hover { color: var(--text); }

.content-section { width: min(calc(100% - 48px), var(--page)); margin: auto; padding: 100px 0; }
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 52px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.section-title h1, .section-title h2 { margin: 0; font-size: clamp(3.6rem, 6vw, 5.5rem); font-weight: 400; line-height: .8; }
.section-title > p, .section-title > div > p { max-width: 430px; margin: 0; color: var(--muted); font-size: .75rem; }

.project-list { border-top: 1px solid var(--border); }
.project {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  min-height: 430px;
  border: 1px solid var(--border);
  border-top: 0;
  background: var(--surface);
}
.project:nth-child(even) { grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); }
.project:nth-child(even) .project-image { grid-column: 2; }
.project:nth-child(even) .project-copy { grid-column: 1; grid-row: 1; }
.project-image { min-height: 430px; overflow: hidden; background: #090b0b; }
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, opacity .3s ease;
}
.project-image:hover img { transform: scale(1.015); opacity: .92; }
.project-copy { padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.project-overline { color: var(--accent); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
.project-overline span { padding: 0 .35rem; color: #58605e; }
.project-copy h2 { margin: .65rem 0 1rem; font-size: clamp(3.3rem, 5vw, 5rem); font-weight: 400; line-height: .85; }
.project-description { color: var(--muted); font-size: .77rem; }
.project-description p { margin: 0; }
.project-copy blockquote { margin: 1.2rem 0 0; padding-left: 1rem; border-left: 1px solid var(--border); color: #7f8986; font-size: .68rem; font-style: italic; }
.project-extra { margin: 1rem 0 0; color: var(--muted); font-size: .7rem; }
.project-genre { margin: 1.25rem 0 0; color: #c4cac7; font-size: .66rem; font-style: italic; }
.project-links { display: flex; flex-wrap: wrap; gap: .85rem 1.15rem; margin-top: 1.25rem; }
.project-links a, .project-links span { color: var(--accent); font-size: .66rem; text-decoration: none; }
.project-links a:hover { color: var(--text); }

.about { border-top: 1px solid var(--border); }
.about-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 7rem); }
.about-intro { color: #b3bbb8; font-size: .83rem; }
.about-intro p:first-child { margin-top: 0; }
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.person h3 { margin: 0 0 .75rem; font-size: 3rem; font-weight: 400; line-height: 1; }
.person > div { color: var(--muted); font-size: .74rem; }
.person > div p { margin-top: 0; }
.person .inspired { margin-top: 1.4rem; color: #7f8986; font-size: .64rem; }
.person .inspired b { color: var(--text); font-weight: 400; }

.studio { border-top: 1px solid var(--border); }
.studio-heading { align-items: end; }
.studio-images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.studio-images figure { margin: 0; overflow: hidden; background: var(--surface); }
.studio-images figure:nth-child(2) { margin-top: 70px; }
.studio-images img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.82); transition: filter .3s ease; }
.studio-images img:hover { filter: saturate(1); }

.contact {
  margin-bottom: 100px;
  padding: 64px;
  border: 1px solid var(--border);
  text-align: center;
  background: var(--surface);
}
.contact h2 { margin: 0; font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 400; line-height: 1; }
.contact > p { margin: .75rem 0 2rem; color: var(--muted); font-size: .72rem; }
.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2rem; }
.social-links a { padding-bottom: .15rem; border-bottom: 1px solid var(--border); color: var(--text); font-size: .7rem; text-decoration: none; }
.social-links a:hover { color: var(--accent); border-color: var(--accent); }

.site-footer { border-top: 1px solid var(--border); }
.footer-inner {
  width: min(calc(100% - 48px), var(--page));
  min-height: 140px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .65rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* Inner pages and press kit */
#content > article { width: min(calc(100% - 48px), 960px); min-height: 60vh; margin: auto; padding: 90px 0 120px; }
.page-content h1, .page-content h2, #content > article > h1, #content > article > h2 {
  color: var(--text);
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  line-height: 1;
}
.page-content h1, #content > article > h1 { margin: 0 0 1.2rem; font-size: 4.5rem; }
.page-content h2, #content > article > h2 { margin: 2.6rem 0 .75rem; font-size: 2.7rem; }
.page-content p { margin-top: 0; margin-bottom: 1rem; }
.page-content a { color: var(--accent); text-decoration: none; }
.page-content a:hover { color: var(--text); }
.feature-list { list-style: none; padding-left: 0; }
.press-logo { width: 240px; max-width: 100%; }
.studio-image { display: block; }

@media (max-width: 820px) {
  .project, .project:nth-child(even) { grid-template-columns: 1fr; }
  .project:nth-child(even) .project-image, .project:nth-child(even) .project-copy { grid-column: 1; }
  .project:nth-child(even) .project-image { grid-row: 1; }
  .project:nth-child(even) .project-copy { grid-row: 2; }
  .project-image { min-height: 340px; }
  .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav-inner, .content-section, .footer-inner { width: min(calc(100% - 28px), var(--page)); }
  .nav-inner { height: 58px; }
  .site-name { font-size: 1.4rem; }
  .site-header nav { gap: 1rem; }
  .site-header nav a { font-size: .6rem; }
  .site-header nav a:nth-child(2) { display: none; }
  .home-hero { min-height: 440px; }
  .hero-inner { width: calc(100% - 28px); }
  .hero-pattern { background-size: auto 80%; }
  .hero-inner p { max-width: 330px; }
  .content-section { padding: 70px 0; }
  .section-title { align-items: start; flex-direction: column; gap: 1rem; margin-bottom: 35px; }
  .section-title h1, .section-title h2 { font-size: 4rem; }
  .project-image { min-height: 230px; }
  .project-copy { padding: 1.6rem; }
  .project-copy h2 { font-size: 3.6rem; }
  .people, .studio-images { grid-template-columns: 1fr; }
  .studio-images figure:nth-child(2) { margin-top: 0; }
  .contact { margin-bottom: 70px; padding: 45px 20px; }
  .social-links { flex-direction: column; align-items: center; }
  .footer-inner { padding: 45px 0; align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: .8rem 1.2rem; }
  #content > article { width: calc(100% - 28px); padding-top: 60px; }
  .page-content h1, #content > article > h1 { font-size: 3.6rem; }
}

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