:root {
  --yellow: #f4c51f;
  --black: #121313;
  --soft: #f5f3ee;
  --grey: #70716e;
  --line: #d9d6ce;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--black);
  background: var(--soft);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.header {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.header-inner {
  width: min(1320px, calc(100% - 48px));
  height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-image {
  display: block;
  width: 72px;
  height: auto;
  object-fit: contain;
}
.footer-logo-image {
  width: 86px;
}
.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-copy b {
  font-size: 18px;
  letter-spacing: 0.04em;
}
.logo-copy small {
  font-size: 8px;
  letter-spacing: 0.18em;
  margin-top: 5px;
}
.footer-logo .logo-copy b {
  font-size: 18px;
}
.footer-logo .logo-copy small {
  font-size: 8px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.contact-link {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 13px 20px;
}
.contact-link span,
.button span,
.text-link span {
  margin-left: 10px;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
}
.menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 7px;
}

.hero {
  position: relative;
  min-height: 860px;
  color: #fff;
  background-image: url("bild1.png");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.76), rgba(8, 10, 9, 0.18) 70%),
    linear-gradient(0deg, rgba(8, 10, 9, 0.52), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding-top: 110px;
}
.kicker {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #807e76;
  margin: 0 0 22px;
}
.kicker.light {
  color: var(--yellow);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(58px, 7.3vw, 108px);
  max-width: 950px;
  margin-bottom: clamp(120px, 15vh, 190px);
  font-weight: 700;
}
.hero-text {
    display:inline-block;
    max-width:650px;

    padding:26px 32px;

    background:rgba(15,16,15,.60);
    border:0px solid rgba(255,255,255,.10);
    border-radius:4px;

    color:#fff;
    font-size:18px;
    line-height:1.8;

    margin-bottom:36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 17px 25px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.button-yellow {
  background: var(--yellow);
  color: #151515;
}
.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.button-dark {
  background: #171818;
  color: #fff;
}
.hero-bottom {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-bottom div {
  padding: 26px 32px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-bottom div + div {
  padding-left: 32px;
}
.hero-bottom div:last-child {
  border-right: 0;
}
.hero-bottom b,
.hero-bottom span {
  display: block;
}
.hero-bottom b {
  font-size: 18px;
}
.hero-bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.67);
  margin-top: 4px;
}

.section {
  padding: 130px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 110px;
}
.intro h2,
.section-head h2,
.contact h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 0;
}
.intro-copy {
  padding-top: 35px;
}
.intro-copy p {
  font-size: 17px;
  color: #585955;
  margin-bottom: 22px;
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  font-size: 13px;
  border-bottom: 1px solid #222;
  padding-bottom: 5px;
}

.image-band {
  min-height: 680px;
  background: url("bild2.png") center/cover;
  display: flex;
  align-items: flex-end;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
}
.image-band-card {
  width: 240px;
  height: 150px;
  padding: 28px;
  background: rgba(15, 16, 15, 0.55);
  color: #fff;
  border-right: 1px solid #41413f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.image-band-card strong {
  color: var(--yellow);
  font-size: 28px;
}
.image-band-card span {
  font-size: 13px;
}

.services {
  background: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 120px;
  align-items: end;
  margin-bottom: 55px;
}
.section-head > p {
  color: #666762;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-list article {
  display: grid;
  grid-template-columns: 90px 1fr 60px;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 24px;
}
.service-list h3 {
  font-size: 30px;
  margin: 0 0 6px;
}
.service-list p {
  margin: 0;
  color: #6a6b67;
}
.service-list article > a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 18px;
  transition: 0.2s;
}
.service-list article:hover > a {
  background: var(--yellow);
  border-color: var(--yellow);
}

.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: #171818;
  color: #fff;
}
.project-image {
  background: url("bild3.png") center/cover;
}
.project-copy {
  padding: 100px max(48px, calc((100vw - 1180px) / 2)) 100px 85px;
}
.project-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
}
.project-copy > p:not(.kicker) {
  color: #b8b9b5;
  max-width: 580px;
}
.project-copy ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}
.project-copy li {
  padding: 17px 0;
  border-top: 1px solid #393a38;
  font-size: 14px;
}
.project-copy li span {
  color: var(--yellow);
  display: inline-block;
  width: 50px;
  font-weight: 800;
}

.numbers {
  background: var(--yellow);
  padding: 48px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.numbers-grid div {
  border-right: 1px solid rgba(0, 0, 0, 0.22);
  padding: 0 35px;
}
.numbers-grid div:first-child {
  padding-left: 0;
}
.numbers-grid div:last-child {
  border-right: 0;
}
.numbers-grid strong,
.numbers-grid span {
  display: block;
}
.numbers-grid strong {
  font-size: 46px;
  letter-spacing: -0.05em;
}
.numbers-grid span {
  font-size: 12px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 110px;
}
.lead {
  font-size: 17px;
  color: #63645f;
  max-width: 520px;
}
.contact-items {
  margin-top: 45px;
}
.contact-items a {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-items small,
.contact-items b {
  display: block;
}
.contact-items small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #777;
}
.contact-items b {
  font-size: 18px;
  margin-top: 4px;
}
form {
  background: #fff;
  padding: 42px;
  border-radius: 3px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c8c6c0;
  background: transparent;
  padding: 12px 0;
  outline: none;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
input:focus,
textarea:focus {
  border-color: #111;
}
.form-info {
  display: block;
  margin-top: 14px;
  color: #777;
}

footer {
  background: #111212;
  color: #fff;
  padding: 78px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  gap: 70px;
  padding-bottom: 60px;
}
.footer-top > p {
  color: #a7a8a5;
}
.footer-top > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-top > div:last-child small {
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #858682;
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #161716;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .two-col,
  .section-head,
  .contact-grid,
  .project-feature {
    grid-template-columns: 1fr;
  }
  .section-head {
    gap: 25px;
  }
  .project-image {
    min-height: 520px;
  }
  .project-copy {
    padding: 75px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-bottom div {
    display: none;
  }
  .hero-bottom div:first-child {
    display: block;
    border: 0;
  }
  .service-list article {
    grid-template-columns: 70px 1fr 50px;
  }
}
@media (max-width: 600px) {
  .wrap,
  .hero-content,
  .hero-bottom,
  .header-inner {
    width: calc(100% - 30px);
  }
  .header-inner {
    height: 82px;
  }
  .logo {
    gap: 10px;
  }
  .logo-image {
    width: 58px;
  }
  .footer-logo-image {
    width: 70px;
  }
  .logo-copy b {
    font-size: 14px;
  }
  .logo-copy small {
    font-size: 6px;
  }
  .footer-logo .logo-copy b {
    font-size: 15px;
  }
  .footer-logo .logo-copy small {
    font-size: 7px;
  }
  .hero {
    min-height: 780px;
  }
  .hero-content {
    padding-top: 70px;
  }
  .hero h1 {
    margin-bottom: 92px;
  }
  .hero-text {
    font-size: 16px;
  }
  .section {
    padding: 85px 0;
  }
  .two-col {
    gap: 35px;
  }
  .image-band {
    min-height: 520px;
    padding: 0;
  }
  .service-list article {
    grid-template-columns: 48px 1fr 38px;
    gap: 15px;
  }
  .service-icon {
    width: 44px;
    height: 44px;
  }
  .service-list h3 {
    font-size: 23px;
  }
  .service-list p {
    font-size: 13px;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 0;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  form {
    padding: 26px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    gap: 20px;
  }
}
