body {
  overflow: hidden !important;
  height: 100vh !important;
}

.collab-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 6rem;
}

.collab-header {
  padding: 0 3.5rem 3rem 3.5rem;
  position: relative;
  z-index: 600;
}

/* ── YAY ── */
#yay-overlay {
  position: fixed;
  inset: 0;
  background: #FF4400;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#yay-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.yay-text {
  font-size: 25vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}
#yay-overlay.active .yay-text {
  transform: scale(1);
}
.collab-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #111;
}

.collab-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 6rem;
  padding: 0 3.5rem 6rem 3.5rem;
  align-items: start;
}

/* ── FORM ── */
.collab-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  position: relative;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #ccc;
  background: transparent;
  font-family: "Google Sans", sans-serif;
  font-size: 1.1rem;
  color: #111;
  padding: 1rem 0 0.5rem;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #FF4400;
}
.form-field label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 1.1rem;
  color: #999;
  pointer-events: none;
  transition: top 0.2s, font-size 0.2s, color 0.2s;
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
  color: #FF4400;
}

/* ── SERVICES ── */
.form-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services-label {
  font-size: 0.75rem;
  color: #FF4400;
  letter-spacing: 0.02em;
}
.services-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
}
.pill input {
  display: none;
}
.pill span {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1.5px solid #ccc;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #111;
  font-family: "Google Sans", sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pill input:checked + span {
  background: #FF4400;
  border-color: #FF4400;
  color: #fff;
}
.pill:hover span {
  border-color: #FF4400;
}

/* ── SUBMIT ── */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #FF4400;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  align-self: flex-start;
  transition: transform 0.2s, background 0.2s;
}
.form-submit:hover {
  transform: scale(1.04);
  background: #e03a00;
}

/* ── INFO ── */
.collab-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}
.info-label {
  font-size: 0.75rem;
  color: #FF4400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.info-value {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}
.info-text {
  display: inline-block;
  transition: opacity 0.2s;
}
.info-action {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  background: #FF4400;
  color: #fff;
  border-radius: 999px;
  padding: 0.3em 1em;
  font-size: 0.9rem;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.info-hover-wrap:hover .info-text { opacity: 0; }
.info-hover-wrap:hover .info-action { opacity: 1; }
.info-socials {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.info-socials a {
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
.info-socials a:hover { color: #FF4400; }

/* ── TABLETTE ── */
@media (max-width: 1100px) {
  body {
    overflow: auto !important;
    height: auto !important;
  }

  .collab-page {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 8rem;
  }

  .collab-header {
    padding: 0 3.5rem 2rem;
  }

  .collab-body {
    gap: 3rem;
    padding-bottom: 5rem;
  }

  .collab-info {
    min-width: 260px;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  body {
    overflow: auto !important;
    height: auto !important;
  }

  .collab-page {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 6rem;
  }

  .collab-header {
    padding: 0 1.5rem 2rem;
  }

  .collab-body {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem 4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collab-info {
    gap: 2rem;
  }
}

/* nav on white page */
.nav {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  background: #fff !important;
  z-index: 500 !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  padding-left: 3.5rem !important;
}
.nav.dimmed { opacity: 0.35 !important; transition: opacity 0.3s ease !important; }
.nav .nav-logo-img { margin-left: -2.6rem; }
.nav .nav-logo-img img { filter: none; }
.nav .nav-menu-btn { background: #FF4400; }
.nav .menu-dot { background: #fff; }
