:root {
  --navy: #020915;
  --navy-soft: #07111f;
  --gold: #bd8c43;
  --gold-dark: #a17433;
  --paper: #f7f3ed;
  --ink: #111111;
  --muted: #5f594f;
  --line: rgba(255, 255, 255, .18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 72px;
  padding: 0 72px;
  color: #fff;
  background: var(--navy);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  line-height: 1;
}

.brand span,
.footer-brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 35px;
  letter-spacing: 0;
}

.brand small,
.footer-brand small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 3px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  font-size: 12px;
  font-weight: 600;
}

.main-nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #c99a52, var(--gold-dark));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 10px;
}

.btn-secondary {
  min-height: 36px;
  padding: 0 18px;
  font-size: 10px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 74px 72px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .54) 34%, rgba(0, 0, 0, .2) 63%, rgba(0, 0, 0, .06) 86%),
    url("../img/hero-right-clean.png") right center / auto 100% no-repeat,
    url("../img/hero-building-texture.png") center / cover no-repeat,
    #15120e;
  background-repeat: no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(34px, 5.1vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.6;
  font-weight: 500;
}

.value-bar,
.partner-panel {
  color: #fff;
  background: var(--navy);
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-height: 104px;
  padding: 24px 72px;
}

.value-bar article,
.partner-benefits article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  font-size: 24px;
}

.circle {
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  font-size: 17px;
}

.value-bar strong,
.partner-benefits strong {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.value-bar small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .83);
  font-size: 11px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  align-items: center;
  gap: 58px;
  padding: 52px 72px;
  background: #f9f5ef;
}

.about-image {
  margin: 0;
}

.about-image img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 16px 40px rgba(21, 14, 8, .15);
}

h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.about-copy p,
.partner-copy p,
.site-footer p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.about-copy {
  max-width: 520px;
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 42px;
  align-items: stretch;
  padding: 0 72px;
  overflow: hidden;
  background: var(--navy);
}

.partner-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: min(39vw, 456px);
  right: 0;
  height: 50px;
  background: #f9f5ef;
  border-bottom-left-radius: 56px;
  z-index: 0;
}

.partner-copy {
  position: relative;
  z-index: 1;
  padding: 34px 0 34px 0;
}

.partner-copy::before {
  display: none;
}

.partner-copy h2 {
  color: #fff;
}

.partner-copy p {
  color: rgba(255, 255, 255, .84);
}

.partner-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding: 34px 0;
}

.partner-benefits article {
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 0;
  padding: 34px 72px;
  color: #fff;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 18px;
    padding: 16px 24px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .value-bar,
  .about-section,
  .partner-panel,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .value-bar,
  .partner-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-panel {
    grid-template-columns: 1fr;
  }

  .partner-copy::before {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
  }

  .brand {
    align-items: flex-start;
  }

  .brand span {
    font-size: 30px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-small {
    min-height: 32px;
    padding: 0 12px;
  }

  .hero {
    min-height: 510px;
    align-items: flex-end;
    padding-top: 48px;
    padding-bottom: 48px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .value-bar,
  .about-section,
  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .value-bar article {
    justify-content: flex-start;
  }

  .about-section {
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
