@font-face {
  font-family: "Sofia Pro";
  src:
    url("fonts/SofiaPro-UltraLight.woff") format("woff"),
    url("fonts/SofiaPro-UltraLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro Medium";
  src:
    url("fonts/Sofia Pro Soft Medium.woff") format("woff"),
    url("fonts/Sofia Pro Soft Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sofia Pro Light";
  src:
    url("fonts/SofiaProLight.woff") format("woff"),
    url("fonts/SofiaProLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sofia Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  background: #0b1b0e;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

textarea {
  resize: none;
}

::selection {
  background: #1c9750;
  color: #fff;
}

.container {
  width: calc(100% - 2rem);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}

.top-bar a {
  font-size: 16px;
  font-family: "Sofia Pro Medium";
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #fff;
}

.splash-page {
  position: relative;
  min-height: calc(100vh - 10px);
}

.splash-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.splash-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 0.58;
  filter: brightness(0.72) contrast(1.25) saturate(0.82);
}

.splash-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    radial-gradient(
      327.81% 140.56% at 100% 0%,
      rgba(11, 27, 14, 0.68) 22%,
      rgba(16, 38, 19, 0.74) 55%,
      rgba(23, 50, 27, 0.82) 100%
    );
}

.splash-content {
  min-height: calc(100vh - 10px);
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.content-top {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  flex-shrink: 0;
}

.logo {
  overflow: hidden;
}

.logo img {
  width: 413px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  clip-path: inset(
    100% 0 0 0
  ); /* fully hidden, masked from the top down to bottom */
  animation:
    revealUp 1.8s cubic-bezier(0.77, 0, 0.18, 1) forwards,
    fadeIn 1.2s ease-in forwards;
  animation-delay: 0.3s;
}

@keyframes revealUp {
  0% {
    clip-path: inset(100% 0 0 0); /* image fully clipped/hidden */
  }
  100% {
    clip-path: inset(0 0 0 0); /* image fully visible */
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.content-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-divider {
  width: 880px;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  margin: 50px auto;
  transform: scaleX(0);
  transform-origin: center center;
  animation: borderReveal 1.8s cubic-bezier(0.77, 0, 0.18, 1) 0.3s forwards;
}

@keyframes borderReveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}
.splash-text {
  max-width: 880px;
}

.splash-text p {
  font-family: "Sofia Pro";
  font-size: 25px;
  line-height: 30px;
  font-weight: 200;
  text-align: center;
  color: #fff;
}

.office-wrapper {
  width: 100%;
  max-width: 880px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.office-item {
  flex: 1;
}

.office-item h3 {
  font-family: "Sofia Pro Light";
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 20px;
}

.office-item p,
.office-item a {
  display: block;
  font-family: "Sofia Pro";
  font-size: 21px;
  font-weight: 250;
  line-height: 33px;
}

.office-contact span {
  color: #1c9750;
}

.content-bottom {
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 30px;
  padding-top: 50px;
}

.copyright {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.bottom-strip {
  height: 10px;
  background: linear-gradient(90deg, #489557 0%, #00582b 100%);
}

@media (max-width: 1024px) {
  .container {
    width: calc(100% - 48px);
  }

  .top-bar {
    padding-top: 24px;
  }

  .top-bar a {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .splash-content {
    padding-top: 40px;
  }

  .hero-content {
    justify-content: center;
  }

  .content-top {
    margin-bottom: 56px;
  }

  .logo img {
    width: 320px;
  }

  .splash-text {
    max-width: 700px;
  }

  .splash-text p {
    font-size: 24px;
    line-height: 1.45;
  }

  .content-divider {
    width: 700px;
    margin: 40px auto;
  }

  .office-wrapper {
    max-width: 700px;
    gap: 28px;
    margin-bottom: 80px;
  }

  .office-item h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .office-item p,
  .office-item a {
    font-size: 17px;
    line-height: 1.7;
  }

  .content-bottom {
    margin-bottom: 24px;
  }

  .copyright {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }

  .top-bar {
    justify-content: center;
    padding-top: 24px;
    margin-bottom: 28px;
  }

  .top-bar a {
    font-size: 13px;
    letter-spacing: 1.4px;
  }

  .splash-content {
    padding-top: 0;
  }

  .hero-content {
    justify-content: center;
  }

  .content-top {
    margin-bottom: 40px;
  }

  .logo img {
    width: 220px;
  }

  .splash-text {
    max-width: 100%;
  }

  .splash-text p {
    font-size: 18px;
    line-height: 1.55;
  }

  .content-divider {
    width: 100%;
    margin: 32px auto;
  }

  .office-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    margin-bottom: 60px;
  }

  .office-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .office-item p,
  .office-item a {
    font-size: 17px;
    line-height: 1.65;
  }

  .office-contact span {
    display: inline-block;
    min-width: 22px;
  }

  .content-bottom {
    margin-bottom: 20px;
  }

  .copyright {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 1.4px;
    text-align: center;
  }

  .bottom-strip {
    height: 8px;
  }
}


