/* ========================================
   FONTS
======================================== */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular..woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asgard Wide";
  src: url("../fonts/Asgard-Wide-Bold.woff2") format("woff2"), url("../fonts/Asgard-Wide-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* ========================================
   RESET
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: #FFFDF9;
  color: #111111;
  font-family: "Inter";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body {
  animation: pageFade 1.8s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   SUBTLE GRAIN
======================================== */
.hero__title {
  animation: floatTitle 10s ease-in-out infinite;
}

@keyframes floatTitle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}
/* ========================================
   PAGE
======================================== */
.page {
  min-height: 100vh;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ========================================
   HERO
======================================== */
.hero {
  padding-top: 12px;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}

.hero__label,
.hero__status {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}

h1.hero__title {
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.9;
  font-family: "Asgard Wide";
  font-weight: 500;
  margin-bottom: 36px;
}

h1.hero__title span {
  display: block;
  font-size: clamp(3rem, 8vw, 8rem);
  margin-top: 1rem;
}

.hero__description {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.68);
}

/* ========================================
   CONTACTS
======================================== */
.contacts {
  padding-top: 80px;
}

.contacts__grid {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.contacts__caption {
  margin-bottom: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}

.contacts__link,
.contacts__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #111111;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contacts__link:hover {
  opacity: 0.45;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 980px) {
  .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page {
    padding: 24px;
  }
  .hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 56px;
  }
  .hero__title {
    margin-bottom: 24px;
  }
  h1.hero__title span {
    margin-top: 10px;
  }
  .contacts {
    padding-top: 56px;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contacts__link {
  color: #111;
  text-decoration: none;
  padding-bottom: 6px;
  background-image: linear-gradient(rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.75));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.45s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
}

.contacts__link:hover {
  background-size: 100% 1px;
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
