@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: #000;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;
  background: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.logo {
  width: 76px;
  height: auto;
}

nav {
  display: flex;
  gap: 38px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.4px;
}

nav a:hover,
nav a[href="social.html"] { 
  color: #d8a154; 
}

.quote-btn,
button {
  background: #d8a154;
  color: white;
  border: none;
  padding: 13px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
  font-family: inherit;
}

.quote-btn:hover,
button:hover {
  transform: translateY(-3px);
  background: #c99043;
}

.menu-toggle {
  display: none;
  background: none;
  padding: 0;
  font-size: 30px;
  color: white;
}

.mobile-menu { 
  display: none; 
}

/* PINNED SECTION */

.pinned-social {
  min-height: 430px;
  padding: 128px 10% 70px;
  background: linear-gradient(to bottom, #211407 0%, #2c1b0b 100%);
}

.pinned-card {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: center;
}

.pinned-video-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
  text-decoration: none;
}

.pinned-video-link::after {
  content: "OPEN ON INSTAGRAM";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  opacity: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.6px;
  transition: 0.35s ease;
}

.pinned-video-link:hover::after {
  background: rgba(0,0,0,0.5);
  opacity: 1;
}

.pinned-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
  border: none;
  outline: none;
}

.pinned-copy {
  max-width: 570px;
}

/* DIAGONAL DOUBLE PROFILE IMAGES */

.profile-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.profile-images {
  position: relative;
  width: 90px;
  height: 78px;
  flex-shrink: 0;
}

.profile-images img {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2c1b0b;
}

.profile-images img:first-child {
  left: 0;
  bottom: 0;
  z-index: 2;
}

.profile-images img:last-child {
  right: 0;
  top: 0;
  z-index: 1;
}

.profile-info h1 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-info h1 span {
  font-weight: 300;
}

.profile-info p {
  color: #d8a154;
  font-size: 13px;
  margin: 0;
}

.pinned-copy p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 18px;
}

.pinned-copy .quote-btn {
  margin-top: 10px;
  font-size: 12px;
  padding: 12px 28px;
}

/* SOCIAL GRID - FIXED SQUARE GRID */

.social-grid-section {
  background: #000;
  padding: 85px 6% 110px;
  text-align: center;
  overflow-x: hidden;
}

.social-grid-section h2 {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.social-grid {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #9a9a9a;
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.social-item img,
.social-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.social-video {
  border: none;
  outline: none;
}

.social-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
  transition: 0.35s ease;
  z-index: 2;
}

.social-hover p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  transform: translateY(15px);
  transition: 0.35s ease;
}

.social-item:hover .social-hover {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.social-item:hover .social-hover p {
  transform: translateY(0);
}

/* FOOTER */

.site-footer {
  background: #000;
  padding: 65px 8% 55px;
  text-align: center;
}

.footer-logo {
  width: 82px;
  margin-bottom: 35px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-contacts a:hover {
  color: #d8a154;
}

.footer-contacts img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* MOBILE */

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    padding: 0 7%;
  }

  .logo {
    width: 70px;
  }

  nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1.2px;
  }

  .pinned-social {
    padding: 125px 8% 65px;
  }

  .pinned-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .pinned-video-link {
    max-width: 310px;
    margin: 0 auto;
  }

  .pinned-copy {
    max-width: 100%;
    text-align: left;
  }

  .social-grid-section {
    padding: 70px 6% 90px;
  }

  .social-grid-section h2 {
    font-size: 28px;
  }

  .social-grid {
    gap: 10px;
  }

  .social-hover {
    padding: 18px;
  }

  .social-hover p {
    font-size: 14px;
  }

  .footer-logo {
    width: 70px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 18px;
  }

  .footer-contacts a {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .social-grid {
    gap: 7px;
  }

  .social-hover p,
  .pinned-copy p {
    font-size: 12px;
  }

  .quote-btn {
    padding: 12px 24px;
    font-size: 12px;
  }
}
