/**======================
 * CONTACT HEADER STYLES
 =======================*/
.contact__header {
  padding: 0;
  min-height: 30vh;
  background: linear-gradient(
    to top left,
    rgba(62, 82, 67, 0.95) 0%,
    rgba(62, 82, 67, 0.8) 20%,
    rgba(212, 168, 43, 0.3) 45%,
    rgba(212, 168, 43, 0.1) 65%,
    var(--color-light) 100%
  );
}

.contact__header .section__chapter {
  align-items: center;
  justify-content: center;
}

.contact__main {
  padding: 0;
  min-height: 100vh;
}

.contact__container {
  width: 100%;
  margin: 0 auto;
  max-width: 160rem;
  padding: clamp(6rem, 8vw, 8rem) clamp(2rem, 4vw, 4rem);
}

.contact__grid {
  display: grid;
  min-height: 80vh;
  gap: clamp(4rem, 6vw, 6rem);
  grid-template-columns: 40% 60%;
}

/**=========================
 * CONTACT EDITORIAL STYLES
 ==========================*/
.contact__editorial {
  height: 145vh;
  display: flex;
  position: relative;
  flex-direction: column;
  background: transparent;
  padding-right: clamp(2rem, 4vw, 4rem);
  border-right: 2px solid var(--color-secondary);
}

.contact__editorial::before {
  top: 10%;
  right: -5%;
  content: "";
  width: 15rem;
  opacity: 0.2;
  height: 15rem;
  position: absolute;
  transform: rotate(25deg);
  background-image: url("/assets/images/logos/logo-1.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/**============================
* EDITORIAL HEADER STYLES
=============================*/
.contact__editorial-header {
  margin-bottom: clamp(4rem, 6vw, 6rem);
}

.contact__editorial-meta {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 3vw, 3rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(212, 168, 43, 0.3);
}

.contact__editorial-label {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: clamp(1.4rem, 1.6vw, 1.5rem);
}

.contact__editorial-number {
  font-weight: 800;
  line-height: 0.8;
  color: var(--color-secondary);
  font-size: clamp(3rem, 4vw, 4.5rem);
}

.contact__editorial-headline {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}
