* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #d9d9d7;
  color: #111;
}

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

.site-header {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #35c2ed;
}

.construction { 
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  color: #5e5e5e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
} 

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hero {
  padding: 110px 0 90px;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 48px 0 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.pillar {
  padding: 40px 32px 56px 0;
}

.pillar + .pillar {
  padding-left: 32px;
  border-left: 1px solid rgba(0, 0, 0, 0.35);
}

.pillar span {
  font-size: 0.8rem;
}

.pillar h2 {
  margin: 18px 0 14px;
  font-size: 2rem;
  line-height: 1;
}

.pillar p {
  max-width: 360px;
  margin: 0;
  line-height: 1.6;
}

.work-preview {
  padding: 80px 0 120px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
}

.project-placeholder {
  min-height: 420px;
  margin-top: 24px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.project-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

@media (max-width: 800px) {

  .site-header,
  main {
    width: min(100% - 32px, 1400px);
  }

  .site-header {
    align-items: flex-start;
  }

  nav {
    gap: 16px;
    font-size: 0.75rem;
  }

  .hero {
    padding: 80px 0 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-copy {
    margin: 36px 0 0;
  }

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

  .pillar,
  .pillar + .pillar {
    padding: 32px 0;
    border-left: 0;
  }

  .pillar + .pillar {
    border-top: 1px solid rgba(0, 0, 0, 0.35);
  }
}

/* PROJECT PAGE */

.project-intro {
  padding: 100px 0 64px;
}

.project-intro h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.project-description {
  max-width: 650px;
  margin: 40px 0 0 auto;
  font-size: 1.25rem;
  line-height: 1.6;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.project-meta span,
.project-text span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-meta p {
  margin: 8px 0 0;
}

.project-hero-image,
.project-full-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 48px 0;
}

.project-text {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.project-text p {
  max-width: 750px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px 0 72px;
}

.image-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.next-project {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 0 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.next-project span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.next-project strong {
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1;
}

@media (max-width: 800px) {

  .project-intro {
    padding: 72px 0 48px;
  }

  .project-meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

}


/* TEMPORARY LANDING PAGE */

.landing-page {
  min-height: 100vh;
}

.landing {
  min-height: 100vh;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px 0;
}

.landing-top,
.landing-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  padding: 16px 0;
 
  border-bottom: 2px solid #35c2ed;

  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.landing-message {
  padding: 80px 0;
}

.landing-message h1 {
  max-width: 1200px;

  margin: 0;

  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;

  text-transform: uppercase;
}

.landing-copy {
  margin: 40px 0 0 auto;
  max-width: 500px;

  font-size: 1.15rem;
  line-height: 1.6;
}

.landing-bottom {
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
}

/*
.logo-container {
    display: block;
    width: 80px;
}

.logo-container img {
    display: block;
    width: 8rem;
    height: auto;
    min-height: 0;
}
*/

@media (max-width: 800px) {

  .landing {
    width: min(100% - 32px, 1400px);
  }

  .landing-top,
  .landing-bottom {
    flex-direction: column;
  }

  .landing-message {
    padding: 64px 0;
  }

  .landing-message h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .landing-copy {
    margin: 32px 0 0;
  }

    .logo-container img {
        width: 4.5rem;
    }
}
