:root {
  --about-max: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f1ec;
  font-family: "IBM Plex Sans Hebrew", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  display: flex;
  align-items: center;
}

.topbar-inner {
  width: min(calc(100% - 96px), var(--about-max));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  justify-self: start;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

nav a {
  position: relative;
  font-size: 17px;
  white-space: nowrap;
}

nav a.active {
  font-weight: 700;
}

nav a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -15px;
}

.header-contact {
  justify-self: end;
  font-size: 14px;
  font-weight: 700;
  direction: ltr;
}

.about-hero {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fffdfa;
  background: var(--forest-deep);
  border-bottom: 3px solid var(--leaf);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("project-road.jpeg") center 48% / cover no-repeat;
  transform: scale(1.015);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 36, 61, .38), rgba(6, 36, 61, .9)),
    linear-gradient(180deg, rgba(6, 36, 61, .08), rgba(6, 36, 61, .36));
}

.about-hero-inner {
  width: min(calc(100% - 96px), var(--about-max));
  margin: auto;
  position: relative;
  z-index: 2;
}

.about-hero-kicker {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #eadac8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .6px;
}

.about-hero-kicker::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--leaf);
}

.about-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.8px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.about-hero-subtitle {
  max-width: 770px;
  margin: 24px 0 0;
  color: #f1e9df;
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .4);
}

.about-main {
  overflow: hidden;
}

.about-section {
  padding: 92px 0;
  position: relative;
}

.about-section--company {
  background: #fff;
}

.about-section--vision {
  color: #fffdfa;
  background:
    radial-gradient(circle at 12% 15%, rgba(181, 132, 78, .15), transparent 33%),
    var(--forest-deep);
}

.about-container {
  width: min(calc(100% - 96px), 1240px);
  margin: auto;
}

.about-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 28px;
}

.about-heading-copy {
  padding-right: 24px;
  border-right: 4px solid var(--leaf);
}

.about-eyebrow {
  margin: 0 0 8px;
  color: var(--leaf);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .7px;
}

.about-heading h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(44px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
}

.about-section--vision .about-heading h2 {
  color: #fffdfa;
}

.about-heading-line {
  height: 1px;
  margin-bottom: 13px;
  background: linear-gradient(90deg, rgba(181, 132, 78, 0), rgba(181, 132, 78, .55));
}

.about-copy {
  max-width: 1080px;
  display: grid;
  gap: 22px;
}

.about-copy p {
  margin: 0;
  color: #344958;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 400;
  line-height: 1.9;
}

.about-copy strong {
  color: var(--forest-deep);
  font-weight: 700;
}

.about-section--vision .about-copy p {
  color: #e8edf0;
}

.about-section--vision .about-copy strong {
  color: #fffdfa;
}

.about-copy p:first-child {
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.8;
}

.about-motto {
  max-width: 950px;
  margin: 48px 0 0;
  padding: 30px 34px;
  position: relative;
  color: #fffdfa;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(201, 161, 111, .34);
  border-right: 5px solid var(--leaf);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .16);
  font-family: "Heebo", Arial, sans-serif;
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1.6;
}

.about-motto span {
  display: block;
  margin-bottom: 7px;
  color: #d8b78f;
  font-family: "IBM Plex Sans Hebrew", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
}

.footer {
  color: #eef2ef;
  background: var(--forest-deep);
}

.footer-main {
  width: min(calc(100% - 96px), var(--about-max));
  margin: auto;
  padding: 52px 0 44px;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 80px;
  align-items: start;
}

.footer-brand p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #c8d1d8;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-item {
  padding-right: 18px;
  border-right: 2px solid rgba(181, 132, 78, .7);
}

.contact-label {
  display: block;
  margin-bottom: 10px;
  color: #d1b28c;
  font-size: 11px;
  letter-spacing: 1px;
}

.contact-value {
  color: #fffdfa;
  font-size: 15px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-bottom-inner {
  width: min(calc(100% - 96px), var(--about-max));
  min-height: 62px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #9cabb6;
  font-size: 11px;
}

.footer-bottom a {
  color: #dbe2e8;
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .header-contact {
    display: none;
  }

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

  .about-heading-line {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

@media (max-width: 700px) {
  .topbar-inner,
  .about-hero-inner,
  .about-container,
  .footer-main,
  .footer-bottom-inner {
    width: min(calc(100% - 40px), var(--about-max));
  }

  .topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .about-hero {
    min-height: 410px;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-heading {
    margin-bottom: 30px;
  }

  .about-heading-copy {
    padding-right: 18px;
  }

  .about-copy {
    gap: 18px;
  }

  .about-motto {
    margin-top: 34px;
    padding: 24px 22px;
  }

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

  .footer-bottom-inner {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
