:root {
  --ink: #141817;
  --paper: #f1ede4;
  --paper-deep: #e7e0d3;
  --copper: #ed963a;
  --green: #20342d;
  --line: rgba(20, 24, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 0 5vw;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand img,
.footer-brand img {
  width: 255px;
  height: auto;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a,
.header-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header nav a:hover,
.header-cta:hover {
  color: var(--copper);
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 5px;
}

.hero {
  min-height: 930px;
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr auto;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 158px 3vw 70px 7vw;
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

h1 {
  max-width: 780px;
  font-size: clamp(72px, 7.6vw, 126px);
}

h1 em,
h2 em,
blockquote em {
  color: var(--copper);
  font-weight: 400;
}

.hero-intro {
  max-width: 570px;
  margin: 42px 0 0;
  color: rgba(241, 237, 228, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-width: 210px;
  padding: 18px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button-primary {
  background: var(--copper);
  color: var(--ink);
}

.button-primary:hover {
  background: #f4ad61;
  transform: translateY(-2px);
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-image {
  position: relative;
  min-height: 850px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 35%),
    linear-gradient(0deg, rgba(20, 24, 23, 0.45), transparent 45%);
}

.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 65px;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp span {
  font-size: 9px;
  letter-spacing: 0.24em;
}

.hero-stamp strong {
  margin: 2px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.hero-footer {
  grid-column: 1 / -1;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-footer span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-footer i {
  width: 4px;
  height: 4px;
  background: var(--copper);
  border-radius: 50%;
}

.hero-footer p {
  margin-left: auto;
  color: rgba(241, 237, 228, 0.58);
  font-size: 12px;
}

.section {
  padding: 130px 7vw;
}

.section-heading h2,
.work-heading h2,
.contact h2 {
  font-size: clamp(54px, 6vw, 94px);
}

.services {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
}

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

.service-row {
  display: grid;
  grid-template-columns: 50px minmax(180px, 0.75fr) 1fr 34px;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
}

.service-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.service-row p,
.work-heading > p,
.about-copy > p,
.contact > p {
  margin: 0;
  color: #5f625d;
  font-size: 15px;
  line-height: 1.7;
}

.service-row > a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 180ms ease;
}

.service-row:hover > a {
  background: var(--copper);
  border-color: var(--copper);
}

.work {
  background: var(--green);
  color: var(--paper);
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.work-heading > p {
  max-width: 380px;
  color: rgba(241, 237, 228, 0.66);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 58px 28px;
}

.project-card {
  align-self: start;
}

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

.project-image {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #0d1713;
}

.project-wide .project-image {
  height: 720px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 650ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-copy {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.project-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.project-copy p {
  max-width: 250px;
  margin: 4px 0 0;
  color: rgba(241, 237, 228, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.about {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  align-items: center;
  background: var(--paper-deep);
}

.about-mark {
  position: relative;
}

.about-mark::before {
  content: "";
  position: absolute;
  inset: -24px 24px 24px -24px;
  border: 1px solid rgba(237, 150, 58, 0.6);
}

.about-mark img {
  position: relative;
  width: 100%;
}

.about-copy blockquote {
  margin-bottom: 42px;
  font-size: clamp(42px, 5vw, 76px);
}

.about-copy > p {
  max-width: 640px;
  font-size: 17px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.about-points span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  padding: 135px 7vw;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.contact h2 {
  margin-bottom: 34px;
}

.contact > p {
  max-width: 610px;
  margin: 0 auto;
  color: rgba(241, 237, 228, 0.62);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.button-outline {
  min-width: 160px;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
}

footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px 7vw;
  background: #0e1110;
  color: rgba(241, 237, 228, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1.7;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  flex-direction: column;
}

footer a:hover {
  color: var(--copper);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 560px auto;
  }

  .hero-copy {
    padding: 170px 7vw 70px;
  }

  .hero-image {
    min-height: 0;
  }

  .hero-image::after {
    background: linear-gradient(180deg, var(--ink), transparent 28%),
      linear-gradient(0deg, rgba(20, 24, 23, 0.35), transparent);
  }

  .hero-footer {
    grid-column: 1;
  }

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

  .project-wide .project-image {
    height: 580px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 76px;
    padding: 0 5vw;
  }

  .brand img {
    width: 190px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta::after {
    content: "Call";
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    grid-template-rows: auto 430px auto;
  }

  .hero-copy {
    padding: 138px 6vw 56px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-intro {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions,
  .work-heading,
  .project-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stamp {
    width: 105px;
    height: 105px;
  }

  .hero-stamp strong {
    font-size: 30px;
  }

  .hero-footer {
    flex-wrap: wrap;
    padding: 24px 6vw;
  }

  .hero-footer p {
    width: 100%;
    margin: 0;
  }

  .section {
    padding: 90px 6vw;
  }

  .service-row {
    grid-template-columns: 34px 1fr 30px;
  }

  .service-row p {
    grid-column: 2 / -1;
  }

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

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

  .project-wide .project-image,
  .project-image {
    height: 450px;
  }

  .about-mark {
    margin-left: 22px;
  }

  .contact {
    padding: 95px 6vw;
  }

  .contact-actions .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
