@import url("./reset.css");
@import url("./variables.css");
@import url("./base.css");
@import url("./home.css");
/* ===========================
   SERVICES PAGE
=========================== */

.services-page,
.selected-work-page {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.55)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-hero {
  padding: 145px 54px 65px;
  text-align: center;
  animation: servicesReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-title {
  color: #fff;

  font-size: 60px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 45%, #f0f0f0 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.035));

  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.08),
    0 2px 3px rgba(0, 0, 0, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.services-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 54px 120px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  animation: servicesReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.service-card {
  position: relative;

  width: 410px !important;
  height: 410px !important;
  flex: 0 0 410px !important;
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  clip-path: polygon(
    25% 6.7%,
    75% 6.7%,
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%
  );

  background: #0b0b0b;

  text-decoration: none;

  transition: transform 0.35s ease;
}

.service-image {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  transform: scale(1.18);

  transition: transform 0.6s ease;
}

.service-card:hover .service-image {
  transform: scale(1.14);
}

.service-mixmaster {
  background-image: url("../images/services/mix-master.png");
  background-position: center 30%;
}

.service-mix {
  background-image: url("../images/services/mix.png?v=1");
}

.service-master {
  background-image: url("../images/services/master.png");
  background-position: center 40%;
}

.service-mentoring {
  background-image: url("../images/services/mentoring.png");
  background-position: center 25%;
}
.service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.12) 80%,
      rgba(0, 0, 0, 0.58) 98%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78));
}
.service-card span {
  position: relative;
  z-index: 2;

  transform: translateY(-2px);

  color: #f2f2f2;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.18em;

  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 2px rgba(0, 0, 0, 0.25),
    0 4px 6px rgba(0, 0, 0, 0.12);
}

.home-logo-link {
  position: fixed;
  top: 24px;
  left: 20px;

  z-index: 1000;

  text-decoration: none;
}

.logo-small {
  font-size: 28px;

  opacity: 0.72;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.logo-small .lus {
  margin-left: 25px;
}

.home-logo-link:hover .logo-small {
  opacity: 1;
  transform: translateY(-2px);
}
/* ===========================
   ABOUT
=========================== */

.about-page {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.55)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HERO */

.about-hero {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 54px;

  text-align: center;
}

.about-title {
  max-width: 1100px;

  margin: 0;

  background: linear-gradient(180deg, #f1f1f1 0%, #d8d8d8 45%, #b9b9b9 100%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);

  font-size: 55px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

/* MANIFESTO */

/* IMAGE */

.about-image {
  position: relative;
  margin-top: 70px;

  padding: 70px 54px 150px;
}

.about-image-wrapper {
  width: min(1400px, calc(100% - 80px));
  aspect-ratio: 3/1;

  margin: 0 auto;

  overflow: hidden;
}

.about-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter: brightness(0.82) contrast(1.05) saturate(0.9);

  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);

  filter: brightness(0.9) contrast(1.08) saturate(0.95);
}

/* ENDING */

.about-ending {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 0px 220px;

  text-align: center;

  margin-top: -40px;
}
.about-ending h2 {
  max-width: 1000px;

  margin: 0;

  background: linear-gradient(180deg, #f1f1f1 0%, #d7d7d7 45%, #b9b9b9 100%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);

  font-size: 54px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.about-header {
  position: absolute;
}

/* SELECTED WORK */

.about-selected {
  padding: 0 54px 220px;
}
.about-selected-title {
  margin: 0 0 70px;

  background: linear-gradient(180deg, #f1f1f1 0%, #d7d7d7 45%, #b9b9b9 100%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);

  font-size: 48px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-grid {
  width: min(1500px, 100%);

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}

.selected-item {
  display: block;

  overflow: hidden;

  text-decoration: none;

  border-radius: 4px;
}
.selected-item img {
  display: block;

  width: 100%;
  margin: 0 auto;

  aspect-ratio: 1;
  object-fit: cover;

  transition: transform 0.45s ease;
}

.selected-item:hover img {
  transform: scale(1.04);
}
/* ===========================
   SELECTED WORK
=========================== */

.selected-work-list {
  width: min(2000px, 100%);

  margin: 0;

  padding: 60px 54px 120px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px 90px;
}
.work-item {
  display: flex;
  align-items: center;

  gap: 28px;

  min-width: 0;
}

.work-item:last-child {
  border-bottom: none;
}
.work-image {
  flex-shrink: 0;

  width: 420px;
}

.work-image img {
  width: 100%;
  height: auto;

  display: block;

  border-radius: 4px;
}
.work-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;

  flex: 1;
  max-width: none;

  min-width: 0;
}
.work-artist {
  margin-bottom: 21px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 22px;
  font-weight: 300;
}

.work-title {
  margin-bottom: 32px;

  color: #fff;

  font-size: 58px;
  font-weight: 700;
  line-height: 0.95;
}

.work-role {
  margin: 0;

  color: rgba(255, 255, 255, 0.5);

  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===========================
   CONTACT
=========================== */

.contact-page {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.55)),
    url("../images/services/background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-content {
  min-height: calc(100vh - 90px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 0 40px;
}

.contact-title,
.contact-subtitle,
.contact-email,
.contact-location {
  margin: 0;
}
.contact-title {
  color: #fff;

  font-size: 68px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf8f2 22%,
    #efefec 60%,
    #dfdfdc 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.035));

  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.18);

  margin-bottom: 42px;
}
.contact-subtitle {
  color: rgba(255, 255, 255, 0.5);

  font-size: 17px;
  font-weight: 500;

  letter-spacing: 0.02em;

  margin-bottom: 56px;
}
.contact-email {
  display: inline-block;

  text-decoration: none;
  cursor: pointer;

  padding: 8px 0;

  font-size: 36px;
  font-weight: 600;

  letter-spacing: 0.07em;
  line-height: 1.1;

  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 35%, #d7d7d7 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.18);

  margin-bottom: 40px;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.contact-email:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.contact-location {
  color: rgba(255, 255, 255, 0.5);

  font-size: 17px;
  font-weight: 500;

  letter-spacing: 0.04em;
}
.contact-wrapper {
  width: min(720px, 100%);
}
.contact-content {
  animation: contactFade 0.9s ease-out;
}

@keyframes contactFade {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes locationGlow {
  0% {
    filter: brightness(1);
  }

  45% {
    filter: brightness(1.25);
  }

  100% {
    filter: brightness(1.08);
  }
}
@keyframes servicesReveal {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }

  15% {
    opacity: 0.12;
    filter: blur(2.5px);
  }

  30% {
    opacity: 0.28;
    filter: blur(2.2px);
  }

  45% {
    opacity: 0.5;
    filter: blur(2px);
  }

  60% {
    opacity: 0.72;
    filter: blur(1.2px);
  }

  75% {
    opacity: 0.88;
    filter: blur(0.6px);
  }

  90% {
    opacity: 0.97;
    transform: translateY(1px);
    filter: blur(0.15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* ==========================================
   ABOUT PAGE ANIMATION
========================================== */

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-page {
  animation: aboutFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-hero,
.about-image,
.about-ending,
.about-selected {
  opacity: 0;
  transform: translateY(24px);
  animation: aboutFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-hero {
  animation-delay: 0.1s;
}

.about-image {
  animation-delay: 0.25s;
}

.about-ending {
  animation-delay: 0.4s;
}

.about-selected {
  animation-delay: 0.55s;
}
@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

.about-hero,
.about-image,
.about-ending,
.about-selected {
  animation: aboutReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
