* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: #1f1f1f;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 7vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar::before {
  background: #f26b21;
  content: "";
  height: 3px;
  left: 7vw;
  position: absolute;
  top: 0;
  width: 54px;
}

.brand {
  color: #202020;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: #f26b21;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #484848;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 30px 0 27px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav a:hover {
  color: #f26b21;
}

.nav a::after {
  background: #f26b21;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.nav a[aria-current="page"] {
  color: #f26b21;
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 78px);
}

.hero-content {
  align-self: center;
  max-width: 560px;
  padding: 64px 7vw 88px;
}

.eyebrow {
  color: #f26b21;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy {
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.07em;
  min-height: 46px;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.button-primary {
  background: #f26b21;
  border: 1px solid #f26b21;
  color: #ffffff;
}

.button-primary:hover {
  background: #d9510c;
  border-color: #d9510c;
}

.button-secondary {
  border: 1px solid #dedede;
  color: #242424;
}

.button-secondary:hover {
  border-color: #f26b21;
  color: #f26b21;
}

.hero-media {
  background: #e9834a;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background: rgba(225, 86, 17, 0.68);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(0.65);
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  width: 100%;
}

.about {
  border-top: 1px solid #ededed;
  display: grid;
  gap: clamp(48px, 9vw, 144px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  padding: clamp(80px, 12vw, 160px) 7vw;
}

.about,
.services {
  scroll-margin-top: 78px;
}

.about-intro h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 11ch;
}

.about-intro > p:last-child {
  color: #5f5f5f;
  line-height: 1.75;
  margin-top: 28px;
  max-width: 52ch;
}

.about-principles {
  border-top: 1px solid #202020;
}

.principle {
  border-bottom: 1px solid #dedede;
  display: grid;
  gap: 22px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 24px 0 26px;
}

.principle > span {
  color: #f26b21;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.principle h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.principle p {
  color: #5f5f5f;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 7px;
  max-width: 44ch;
}

.services {
  background: #f7f7f5;
  padding: clamp(80px, 12vw, 160px) 7vw;
}

.services-heading {
  margin-bottom: clamp(48px, 7vw, 92px);
  max-width: 780px;
}

.services-heading .eyebrow {
  margin-bottom: 18px;
}

.services-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 18ch;
}

.services-grid {
  border-left: 1px solid #d8d8d5;
  border-top: 1px solid #d8d8d5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  border-bottom: 1px solid #d8d8d5;
  border-right: 1px solid #d8d8d5;
  min-height: 320px;
  padding: clamp(28px, 4vw, 48px);
}

.service-number {
  color: #f26b21;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}

.service-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.service-card p {
  color: #5f5f5f;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 46ch;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin-top: 28px;
}

.service-card li {
  color: #313131;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card li::before {
  color: #f26b21;
  content: "+";
  margin-right: 5px;
}

.contact {
  display: grid;
  gap: clamp(48px, 9vw, 144px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  padding: clamp(80px, 12vw, 160px) 7vw;
  scroll-margin-top: 78px;
}

.contact-intro h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 11ch;
}

.contact-intro > p:last-of-type {
  color: #5f5f5f;
  line-height: 1.75;
  margin-top: 28px;
  max-width: 46ch;
}

.contact-channels {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.contact-channel {
  align-items: center;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  color: #1f1f1f;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
  width: 42px;
}

.contact-channel svg {
  height: 17px;
  width: 17px;
}

.contact-channel:hover {
  border-color: #f26b21;
  color: #f26b21;
  transform: translateY(-2px);
}

.contact-channel:focus-visible {
  outline: 2px solid #f26b21;
  outline-offset: 3px;
}

.contact-form {
  align-content: start;
  border-top: 1px solid #202020;
  display: grid;
  gap: 28px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 26px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #4c4c4c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  border-radius: 0;
  color: #1f1f1f;
  font: inherit;
  outline: none;
  padding: 10px 0;
  resize: vertical;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: #f26b21;
}

.form-submit {
  justify-self: start;
}

.footer {
  align-items: center;
  border-top: 1px solid #ededed;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 28px 7vw;
}

.footer-brand,
.footer a,
.footer p {
  color: #4c4c4c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand {
  color: #202020;
  font-size: 1rem;
}

.footer-brand span {
  color: #f26b21;
}

.footer p {
  grid-column: 2;
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 24px 7vw;
  }

  .nav {
    gap: 16px 22px;
    justify-content: flex-start;
  }

  .nav a {
    padding: 0 0 8px;
  }

  .button {
    padding: 0 12px;
  }

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

  .hero-content {
    padding-bottom: 56px;
    padding-top: 72px;
  }

  .hero-media {
    min-height: 280px;
  }

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

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .form-field-full {
    grid-column: auto;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 38px;
  }
}
