body.apply-page {
  min-height: 100vh;
  color: var(--text);
}

body.apply-page h1,
body.apply-page .form-label,
body.apply-page legend {
  font-family: 'Cormorant Garamond', serif; 
}    

.apply-bg-video,
.apply-bg-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
} 
 
.apply-bg-video {
  z-index: -2;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.08) contrast(0.86) saturate(0.78);
}

.apply-bg-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(243, 232, 230, 0.42) 0%, rgba(243, 232, 230, 0.18) 42%, rgba(243, 232, 230, 0.76) 100%),
    rgba(243, 232, 230, 0.18);
}

.apply-shell {
  min-height: 100vh;
  padding-top: 24px;
  padding-bottom: 28px;
}

.apply-header {
  margin-bottom: 62px;
}

.apply-title {
  margin-bottom: 48px;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.45);
}

.apply-title h1 {
  margin-bottom: 10px;
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  font-weight: 400;
  line-height: 1;
}

.apply-title p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.15;
}

.apply-card {
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px) clamp(26px, 6vw, 64px) 0;
  background: rgba(248, 242, 240, 0.78);
  box-shadow: 0 18px 42px rgba(82, 61, 57, 0.15);
}

.apply-card form {
  max-width: 690px;
  margin: 0 auto;
}

.apply-card .form-label,
.apply-card legend {
  margin-bottom: 3px;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.apply-card legend {
  float: none;
  width: auto;
}

.apply-card .form-control {
  min-height: 46px;
  border: 1px solid rgba(93, 75, 73, 0.28);
  border-radius: 0;
  background: rgba(248, 242, 240, 0.34);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  box-shadow: none;
}

.apply-card textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.apply-card .form-control:focus {
  border-color: rgba(93, 75, 73, 0.58);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 0 0.18rem rgba(201, 162, 127, 0.18);
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.budget-choice {
  min-width: 142px;
  padding: 6px 18px 8px;
  border: 1px solid rgba(93, 75, 73, 0.2);
  background: rgba(243, 232, 230, 0.45);
  color: var(--text);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.05;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-check:checked + .budget-choice,
.budget-choice:hover {
  border-color: rgba(93, 75, 73, 0.42);
  background: rgba(201, 162, 127, 0.34);
}

.apply-submit {
  min-width: 320px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}

.apply-note {
  margin: 18px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.apply-note + .apply-note {
  margin-top: 12px;
}

.apply-cities {
  margin: 34px calc(clamp(26px, 6vw, 64px) * -1) 0;
  padding: 28px 20px;
  background: rgba(218, 199, 190, 0.42);
}

.apply-footer {
  margin-top: 110px;
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .apply-shell {
    padding-top: 18px;
  }

  .apply-header {
    margin-bottom: 42px;
  }

  .apply-brand {
    margin-bottom: 12px;
  }

  .apply-title {
    margin-bottom: 32px;
  }

  .apply-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .budget-choice {
    flex: 1 1 calc(50% - 10px);
    min-width: 128px;
  }

  .apply-submit {
    width: 100%;
    min-width: 0;
  }

  .apply-footer {
    margin-top: 58px;
  }
}
