/* ─── BRIEF STEP REFINEMENTS ─── */
.section--brief .section-inner--narrow,
.section--brief .brief-section-inner {
  max-width: none;
  width: min(1180px, 100%);
}

.brief-step.is-active > .field,
.brief-step.is-active > .two-col,
.brief-step.is-active > .notice {
  margin-top: 18px;
}

.brief-step.is-active > .bloc-header + .field,
.brief-step.is-active > .bloc-header + .two-col,
.brief-step.is-active > .bloc-header + .notice {
  margin-top: 0;
}

.brief-step.is-active .two-col {
  column-gap: 24px;
  row-gap: 18px;
}

.brief-step.is-active .two-col .field {
  margin-bottom: 0;
}

.brief-logistics-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.section--brief .field select,
.section--brief .field input[type="date"],
.section--brief .field input[type="number"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.section--brief .field select:focus,
.section--brief .field input[type="date"]:focus,
.section--brief .field input[type="number"]:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.section--brief .field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  cursor: pointer;
  padding-right: 42px;
}

.section--brief .field--select,
.section--brief .field--date,
.section--brief .field--travellers {
  min-width: 0;
}

.section--brief .email-confirm-hint {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  margin-top: 6px;
}

.traveler-counter {
  align-items: flex-end;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 10px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
}

.traveler-field label,
.traveler-age-field label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 5px;
  white-space: nowrap;
}

.traveler-field--count {
  flex: 0 0 120px;
}

.traveler-ages-panel,
.traveler-ages-list {
  display: contents;
}

.traveler-age-field {
  flex: 0 0 92px;
}

.traveler-age-field input,
.traveler-field--count input {
  min-height: 40px !important;
  padding: 8px 10px !important;
  text-align: center;
}

.traveler-add-btn {
  width: 40px;
  min-height: 40px;
  margin-left: 0;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  flex: 0 0 40px;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s, opacity 0.2s;
}

.traveler-add-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.traveler-add-btn:disabled,
.traveler-add-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

@media (max-width: 720px) {
  .section--brief .section-inner--narrow,
  .section--brief .brief-section-inner {
    width: 100%;
  }

  .brief-step.is-active > .field,
  .brief-step.is-active > .two-col,
  .brief-step.is-active > .notice {
    margin-top: 16px;
  }

  .traveler-counter {
    align-items: flex-end;
    flex-wrap: nowrap;
  }

  .traveler-field--count {
    flex-basis: 112px;
  }

  .traveler-age-field {
    flex-basis: 84px;
  }
}
