:root {
  --text-dark: #222222;
  --text-muted: #999999;
  --footer-bg: #222222;
  --footer-text: #ffffff;
  --header-border: #eed484;
}

@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src:
    url("./assets/fonts/ubuntu/ubuntu-v15-latin_cyrillic-regular.woff2")
      format("woff2"),
    url("./assets/fonts/ubuntu/ubuntu-v15-latin_cyrillic-regular.woff")
      format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src:
    url("./assets/fonts/ubuntu/ubuntu-v15-latin_cyrillic-700.woff2")
      format("woff2"),
    url("./assets/fonts/ubuntu/ubuntu-v15-latin_cyrillic-700.woff")
      format("woff");
}

@font-face {
  font-display: swap;
  font-family: "ProximaSoftCond-Black";
  font-style: normal;
  font-weight: 900;
  src:
    url("./assets/fonts/proxima/proximasoftcond-black.woff2")
      format("woff2"),
    url("./assets/fonts/proxima/proximasoftcond-black.woff")
      format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: #fff;
}

.page {
  min-height: 100vh;
}

.site-header {
  border-top: 4px solid var(--header-border);
  background: #fff;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 151px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 24px;
}

.logo-link {
  display: inline-flex;
}

.logo-link img {
  width: 230px;
  height: 150px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  margin-top: 58px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #555;
  font: inherit;
  font-size: 14px;
  padding: 8px 14px;
  cursor: pointer;
}

.site-nav {
  margin-top: 69px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 14px;
  line-height: 16px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 684px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 684px;
  object-fit: cover;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 92%);
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
  padding: 275px 30px 0;
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-family: "ProximaSoftCond-Black", Arial, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content h1::after {
  border-bottom: 2px solid #eed484;
  content: "";
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 46px;
}

.content {
  max-width: 1022px;
  margin: 85px auto;
  padding: 0 16px;
}

.content-image {
  width: 100%;
  display: block;
  height: auto;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-top,
.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-top {
  padding-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}

.footer-col h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}

.footer-col p {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
}

.footer-brand img {
  width: 200px;
  height: 65px;
  margin-bottom: 48px;
  object-fit: contain;
}

.footer-links-block h3 {
  text-transform: none;
}

footer ul a {
  color: #fff;
  text-decoration: none;
}

footer ul {
  padding: 0;
  list-style: none;
}

.site-footer__b-menu {
  display: flex;
}

.site-footer__b-menu, .site-footer__b-menu a {
  color: #999;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-about {
  padding-bottom: 54px;
  display: grid;
  gap: 32px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.legal-links a,
.legal-links span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.social-link img {
  width: 34px;
  height: 27px;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-inner {
    align-items: center;
    min-height: 100px;
    position: relative;
  }

  .logo-link img {
    width: 160px;
    height: 100px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-top: 0;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    background: #fff;
    padding: 16px;
    border: 1px solid #ececec;
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
    z-index: 10;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .hero-image {
    height: 460px;
    min-height: 460px;
  }

  .hero-content {
    padding-top: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__b-menu, .site-footer__b-menu a {
    display: block;
  }

  .site-footer__b-menu li {
      padding: 10px;
  }
}

/* Ensure the iframe itself is responsive */
iframe {
    width: 100%;
    border: none;
    display: block;
}