:root {
  color-scheme: light;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --line: #e0e0dc;
  --line-soft: #ececea;
  --mist: #c7c7c2;
  --charcoal: #3a3a3a;
  --text: #6e6e6e;
  --muted: #9a9a9a;
  --sage: #b8c1ba;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

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

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

a:focus-visible {
  outline: 1px solid var(--charcoal);
  outline-offset: 6px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}

.brand-mark {
  display: block;
  width: 238px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #7e7e7e;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding-block: 6px;
}

.site-nav a:hover {
  border-color: var(--mist);
  color: var(--charcoal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 56px;
  max-width: var(--max);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: 86px 32px 72px;
}

.hero-inner {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.15;
}

h1 {
  margin-bottom: 24px;
  font-size: 64px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: 36px;
  letter-spacing: 0.08em;
}

h3 {
  margin-bottom: 16px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--mist);
  color: var(--charcoal);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.text-link:hover {
  border-color: var(--charcoal);
}

.hero-card {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.hero-card img {
  width: 78%;
}

.section,
.section-band,
.contact-band {
  padding: 90px 32px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
}

.section-band {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.section-grid,
.split,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.section-grid,
.contact-band {
  max-width: var(--max);
  margin: 0 auto;
}

.section-grid p,
.about-copy p {
  margin-bottom: 0;
  font-size: 18px;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.project-card span {
  display: block;
  margin-bottom: 50px;
  color: var(--sage);
  font-size: 13px;
  letter-spacing: 0.28em;
}

.project-card p {
  margin-bottom: 0;
}

.about-copy {
  display: grid;
  gap: 24px;
}

.journal {
  padding-top: 56px;
}

.journal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 18px;
}

.journal-row span:last-child {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-band {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.contact-links {
  display: grid;
  gap: 16px;
  justify-items: start;
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.contact-links a {
  border-bottom: 1px solid var(--mist);
}

.contact-links a:hover {
  border-color: var(--charcoal);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 120px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.site-footer img {
  width: 34px;
  height: 34px;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 78px;
    padding: 0 24px;
  }

  .brand-mark {
    width: 210px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-card {
    max-width: 420px;
    width: 100%;
  }

  .section-grid,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-mark {
    width: 188px;
  }

  .hero,
  .section,
  .section-band,
  .contact-band {
    padding-inline: 20px;
  }

  .hero {
    gap: 38px;
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .hero-card {
    max-width: 280px;
    justify-self: start;
  }

  h1 {
    font-size: 40px;
    letter-spacing: 0.12em;
  }

  h2 {
    font-size: 29px;
    letter-spacing: 0.06em;
  }

  .hero-copy,
  .section-grid p,
  .about-copy p {
    font-size: 17px;
  }

  .project-card {
    min-height: 220px;
    padding: 26px;
  }

  .contact-links {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .journal-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}
