/* =========================================
   CONTACT PAGE — Matches PDF exactly
   No nav. Yellow dot=home. Red background.
   ========================================= */

.contact-page {
  font-family: 'Neue Montreal', 'Helvetica Neue', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Main ── */
.ct-main {
  background: #d53639;
  min-height: 100vh;
  padding: 10vh 10vw 60px;
  position: relative;
  overflow: hidden;
}

/* ── Top Bar ── */
.ct-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.9vw 10vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ct-topbar__dot {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ct-topbar__dot-img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
  animation: ct-dot-pulse 3s ease-in-out infinite;
}

.ct-topbar__dot-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  color: #2B2B2B;
  opacity: 0;
  animation: ct-arrow-fade 3s ease-in-out infinite;
}

.ct-topbar__dot:hover .ct-topbar__dot-img {
  transform: scale(1.15);
}

.ct-topbar__dot:hover .ct-topbar__dot-arrow {
  opacity: 1;
  animation: none;
}

@keyframes ct-dot-pulse {

  0%,
  60%,
  100% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.25);
  }
}

@keyframes ct-arrow-fade {

  0%,
  20%,
  80%,
  100% {
    opacity: 0;
  }

  35%,
  65% {
    opacity: 1;
  }
}

.ct-topbar__logo img {
  height: 2.75vw;
}

/* ── Headline ── */
.ct-headline {
  font-family: 'PP Editorial New', Georgia, serif;
  font-weight: 200;
  font-size: 6vw;
  line-height: 1.05;
  color: #F5F0EB;
  margin: 0 0 40px;
}

.ct-headline__accent {
  font-weight: 500;
  font-family: 'Neue Montreal', sans-serif;
}

/* ── Yellow Graphic ── */
.ct-yellow {
  position: relative;
  float: right;
  margin-bottom: 5vw;
}

.ct-yellow img {
  width: clamp(60px, 7vw, 100px);
  height: auto;
}

/* ── Grid ── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 8vw;
}

/* ── Contact Info ── */
.ct-info__label {
  font-size: 1vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0 0 24px;
}

.ct-info__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.ct-info__icon {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-info__link {
  font-size: 1vw;
  font-weight: 500;
  color: #F5F0EB;
  text-decoration: none;
  transition: color 0.3s;
}

.ct-info__link:hover {
  color: #E1FD7B;
}

.ct-info__text {
  font-size: 14px;
  font-weight: 500;
  color: #F5F0EB;
  line-height: 1.5;
  margin: 0;
}

/* ── Form ── */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-form__field {
  position: relative;
}

.ct-form__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
}

.ct-form__input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0 8px 70px;
  font-family: 'Neue Montreal', sans-serif;
  font-size: 14px;
  color: #F5F0EB;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
  border-radius: 0;
}

.ct-form__input:focus {
  border-bottom-color: #E1FD7B;
}

.ct-form__btn {
  align-self: flex-end;
  padding: 12px 32px;
  background: transparent;
  color: #F5F0EB;
  font-family: 'Neue Montreal', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1.5px solid #F5F0EB;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 5vw;
  border-radius: 50px;
}

.ct-form__btn:hover {
  background: #F5F0EB;
  color: #d53639;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .ct-topbar {
    padding: 16px 20px;
  }

  .ct-topbar__logo img {
    height: 28px;
  }

  .ct-topbar__dot,
  .ct-topbar__dot-img {
    width: 18px;
    height: 18px;
  }

  .ct-topbar__dot-arrow {
    width: 12px;
    height: 12px;
  }

  .ct-main {
    padding: 70px 24px 40px;
  }

  .ct-headline {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
  }

  .ct-yellow {
    float: none;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    clear: both;
  }

  .ct-yellow img {
    width: 50px;
  }

  .ct-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 20px;
  }

  /* Center the info section */
  .ct-info {
    text-align: center;
  }

  .ct-info__label {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .ct-info__row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
  }

  .ct-info__icon {
    width: 24px;
    margin-top: 0;
  }

  .ct-info__link {
    font-size: 14px;
  }

  .ct-info__text {
    text-align: center;
  }

  .ct-form {
    gap: 16px;
    padding: 0 24px;
  }

  .ct-form__btn {
    align-self: center;
    width: 70%;
    text-align: center;
    margin-top: 20px;
    padding: 14px 32px;
  }
}